buildsystem: add a check for wrong "etc/init.d/..." entries.

This will destroy the symlink from /etc/init.d to /etc/rc.d/init.d at unpack.
This commit is contained in:
Arne Fitzenreiter
2013-06-21 23:17:46 +02:00
parent b843030f09
commit 39e56fae74
3 changed files with 30 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
etc/init.d/squid
etc/rc.d/init.d/squid
etc/sysctl.conf
etc/squid/errors
usr/bin/squidclient
@@ -32,7 +32,7 @@ srv/web/ipfire/cgi-bin/updatexlrator.cgi
var/ipfire/langs
lib/modules/KVER-ipfire/kernel/drivers/net/imq.ko
var/ipfire/qos/bin/makeqosscripts.pl
etc/init.d/network
etc/rc.d/init.d/network
bin/ntfs-3g
lib/libntfs-3g.so
lib/libntfs-3g.so.49

View File

@@ -950,6 +950,7 @@ build)
cd $BASEDIR
tools/checknewlog.pl
tools/checkwronginitlinks
cd $PWD
beautify build_end

27
tools/checkwronginitlinks Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2013 IPFire Team info@ipfire.org #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
grep -r "^etc/init.d//*" ./config/rootfiles/ >/dev/null 2>&1
if [ "${?}" == "0" ]; then
echo "Error! 'etc/init.d/...' in rootfiles files found!"
grep -r "^etc/init.d//*" ./config/rootfiles/
echo "Change this to 'etc/rc.d/init.d/...' !"
fi