On Fri, 2011-08-26 at 15:12 +0100, Steven Jan Springl wrote: > Trying to install shorewall-lite-4.4.23-Beta3 produces the following messages: > > install: cannot create regular file `etc/init.d/shorewall-lite': No such file > or directory > > ERROR: Failed to install -T -o root -g root -m 0544 init.debian.sh > etc/init.d/shorewall-lite
Here's a patch for the installer. Thanks Steven, -Tom -- Tom Eastep \ When I die, I want to go like my Grandfather who Shoreline, \ died peacefully in his sleep. Not screaming like Washington, USA \ all of the passengers in his car http://shorewall.net \________________________________________________
diff --git a/Shorewall-lite/install.sh b/Shorewall-lite/install.sh
index ce0635c..39a949c 100755
--- a/Shorewall-lite/install.sh
+++ b/Shorewall-lite/install.sh
@@ -232,13 +232,13 @@ echo "Shorewall Lite control program installed in ${DESTDIR}/sbin/shorewall-lite
# Install the Firewall Script
#
if [ -n "$DEBIAN" ]; then
- install_file init.debian.sh ${DESTDIR}etc/init.d/shorewall-lite 0544
+ install_file init.debian.sh ${DESTDIR}/etc/init.d/shorewall-lite 0544
elif [ -n "$FEDORA" ]; then
- install_file init.fedora.sh ${DESTDIR}etc/init.d/shorewall-lite 0544
+ install_file init.fedora.sh ${DESTDIR}/etc/init.d/shorewall-lite 0544
elif [ -n "$ARCHLINUX" ]; then
- install_file init.archlinux.sh ${DESTDIR}${DEST}/$INIT 0544
+ install_file init.archlinux.sh ${DESTDIR}/${DEST}/$INIT 0544
else
- install_file init.sh ${DESTDIR}${DEST}/$INIT 0544
+ install_file init.sh ${DESTDIR}/${DEST}/$INIT 0544
fi
echo "Shorewall Lite script installed in ${DESTDIR}${DEST}/$INIT"
signature.asc
Description: This is a digitally signed message part
------------------------------------------------------------------------------ EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified management Up to 160% more powerful than alternatives and 25% more efficient. Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________ Shorewall-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/shorewall-devel
