mirror of
https://github.com/drakkan/sftpgo.git
synced 2026-03-14 22:35:52 +01:00
6 lines
138 B
Bash
6 lines
138 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
|
|
deb-systemd-invoke stop sftpgo.service >/dev/null || true
|
|
fi
|