Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update prerm
  • Loading branch information
nikdavnik committed Oct 29, 2018
1 parent b8d6213 commit 1b6b3f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions debian/prerm
@@ -1,13 +1,13 @@
#!/bin/sh -e

# Stopping oxd-server
if [ -x /etc/init.d/oxd-server-3.1.5 ]; then
/etc/init.d/oxd-server-3.1.5 stop > /dev/null 2>&1
if [ -x /etc/init.d/oxd-server ]; then
/etc/init.d/oxd-server stop > /dev/null 2>&1 &
fi

# Stopping oxd-https-extension
if [ -x /etc/init.d/oxd-https-extension ]; then
/etc/init.d/oxd-https-extension stop > /dev/null 2>&1
/etc/init.d/oxd-https-extension stop > /dev/null 2>&1 &
fi

exit 0

0 comments on commit 1b6b3f1

Please sign in to comment.