Projekt

Obecné

Profil

Stáhnout (279 Bajtů) Statistiky
| Větev: | Tag: | Revize:
#!/bin/bash
# FreenetIS DEB: actions before installing of package

set -e
. /usr/share/debconf/confmodule

SERVER=apache2

# shutdown server
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d apache2 stop 3>/dev/null || true
else
/etc/init.d/apache2 stop 3>/dev/null || true
fi
(11-11/13)