We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ae8275 + 6cbd656 commit 0b5245cCopy full SHA for 0b5245c
install/debian/preinst
@@ -7,7 +7,7 @@ case "$1" in
7
install)
8
# old v7 init script is broken and does not stop when told so
9
if [ -e /etc/init.d/FAHClient ]; then
10
- systemctl kill FAHClient || true
+ systemctl kill FAHClient 2>/dev/null || true
11
fi
12
# Create group if it does not exist
13
if ! getent group $NAME >/dev/null; then
install/rpm/pre
@@ -2,7 +2,7 @@
2
if [ $1 -eq 1 ]; then
3
4
5
6
# create group if it does not exist
0 commit comments