Don't install SysV init script if systemd is specified.

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2012-02-23 10:59:10 -08:00
parent c252005e25
commit 37a3dbb6f6
3 changed files with 60 additions and 51 deletions

View File

@ -216,9 +216,11 @@ fi
if [ -z "$DESTDIR" ]; then
if [ -f /lib/systemd/system ]; then
SYSTEMD=Yes
INITFILE=
fi
elif [ -n "$SYSTEMD" ]; then
mkdir -p ${DESTDIR}/lib/systemd/system
INITFILE=
fi
#
@ -237,10 +239,11 @@ else
first_install="Yes"
fi
#
# Install the Init Script
#
case $TARGET in
if [ -n "$INITFILE" ]; then
#
# Install the Init Script
#
case $TARGET in
debian)
install_file init.debian.sh ${DESTDIR}${INITDIR}/${INITFILE} 0544
;;
@ -250,9 +253,10 @@ case $TARGET in
*)
install_file init.sh ${DESTDIR}${INITDIR}/${INITFILE} 0544
;;
esac
esac
echo "$Product script installed in ${DESTDIR}${INITDIR}/${INITFILE}"
echo "$Product script installed in ${DESTDIR}${INITDIR}/${INITFILE}"
fi
#
# Install the .service file
#

View File

@ -240,6 +240,7 @@ if [ -n "$DESTDIR" ]; then
if [ -n "$SYSTEMD" ]; then
mkdir -p ${DESTDIR}/lib/systemd/system
INITFILE=
fi
else
if [ ! -f /usr/share/shorewall/coreversion ]; then
@ -249,6 +250,7 @@ else
if [ -f /lib/systemd/system ]; then
SYSTEMD=Yes
INITFILE=
fi
fi
@ -305,7 +307,8 @@ if [ -n "$DESTDIR" ]; then
chmod 755 ${DESTDIR}${INITDIR}
fi
case $TARGET in
if [ -n "$INITFILE" ]; then
case $TARGET in
debian)
install_file init.debian.sh ${DESTDIR}${INITDIR}/${INITFILE} 0544
;;
@ -318,10 +321,10 @@ case $TARGET in
*)
install_file init.sh ${DESTDIR}${INITDIR}/${INITFILE} 0544
;;
esac
echo "$Product script installed in ${DESTDIR}${INITDIR}/${INITFILE}"
esac
echo "$Product init script installed in ${DESTDIR}${INITDIR}/${INITFILE}"
fi
#
# Install the .service file
#

View File

@ -310,10 +310,12 @@ fi
if [ -z "$DESTDIR" ]; then
if [ -f /lib/systemd/system ]; then
SYSTEMD=Yes
INITFILE=
fi
elif [ -n "$SYSTEMD" ]; then
mkdir -p ${DESTDIR}/lib/systemd/system
fi
INITFILE=
fI
echo "Installing $Product Version $VERSION"
@ -342,7 +344,8 @@ fi
#
# Install the Firewall Script
#
case $HOST in
if [ -n "$INITFILE" ]; then
case $HOST in
debian)
install_file init.debian.sh ${DESTDIR}${INITDIR}/${INITFILE} 0544
;;
@ -356,13 +359,12 @@ case $HOST in
fi
;;
*)
if [ -n "$INITFILE" ]; then
install_file init.sh ${DESTDIR}${INITDIR}/$INITFILE 0544
fi
;;
esac
esac
[ -n "$INITFILE" ] && echo "$Product script installed in ${DESTDIR}${INITDIR}/$INITFILE"
echo "$Product script installed in ${DESTDIR}${INITDIR}/$INITFILE"
fi
#
# Create /etc/$PRODUCT and /var/lib/$PRODUCT if needed