blob: c01ced9553f1267881c2400bbf78b3a52b67e5bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo "enabling twibd.socket unit..."
systemctl enable --now twibd.socket
}
pre_remove() {
echo "disabling twibd units"
systemctl disable --now twibd.socket
systemctl disable --now twibd.service
}
|