6 lines
97 B
Bash
6 lines
97 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
systemctl stop party.service || true
|
|
systemctl disable party.service || true
|