mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-09 08:15:13 +03:00
7 lines
138 B
Bash
7 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
|