7 lines
162 B
Bash
7 lines
162 B
Bash
#!/bin/sh
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
# Package removal, not upgrade
|
|
systemctl --no-reload disable --now ${pkg.name}.service > /dev/null 2>&1 || :
|
|
fi
|