6 lines
151 B
Bash
Executable File
6 lines
151 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
|
|
deb-systemd-invoke stop 'elwig-rest-backend.service' >/dev/null || true
|
|
fi
|