9 lines
106 B
Plaintext
9 lines
106 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
systemctl --no-reload disable --now ${pkg.name}.service > /dev/null 2>&1 || :
|
||
|
|
|
||
|
|
exit 0
|
||
|
|
|