summaryrefslogtreecommitdiffstats
path: root/debian/systemd.prerm
blob: aedbf58e4d1b5d50befd3319a802e3d5bef6a239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

set -e

#
# Prevent systemd from being removed if it's the active init.  That
# will not work.
#

if [ "$1" = "remove" ] && [ -d /run/systemd/system ]; then
    echo "systemd is the active init system, please switch to another before removing systemd."
    exit 1
fi

#DEBHELPER#