11 lines
135 B
Bash
Executable File
11 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|deconfigure)
|
|
systemctl disable --now strongswan || true
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|