15 lines
145 B
Plaintext
15 lines
145 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
remove)
|
||
|
systemctl --system daemon-reload >/dev/null || true
|
||
|
;;
|
||
|
purge)
|
||
|
rm -rf /etc/wayvnc
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|