You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
265 B
11 lines
265 B
10 months ago
|
#!/bin/sh
|
||
|
set -e
|
||
|
#
|
||
|
# Prevent installation if systemd is the active init.
|
||
|
#
|
||
|
if [ -d /run/systemd/system ]; then
|
||
|
echo "systemd is the active init system, ${DPKG_MAINTSCRIPT_PACKAGE} cannot replace or provide real systemd functionality."
|
||
|
exit 1
|
||
|
fi
|
||
|
#DEBHELPER#
|