11 lines
172 B
Bash
11 lines
172 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
action=$1
|
|
|
|
#dpkg-maintscript-helper rm_conffile /etc/network/if-up.d/openssh-server 1:7.9p1-1~ -- "$@"
|
|
|
|
systemctl stop picloud >/dev/null || true
|
|
|
|
exit 0
|