abuild: implement initdcheck

this check verifies that the *.initd scripts are #!/sbin/runscript
This commit is contained in:
Natanael Copa 2011-01-04 09:05:54 +00:00
parent f580e6657a
commit 0472849c0c
1 changed files with 16 additions and 0 deletions

View File

@ -254,11 +254,27 @@ fetch() {
default_fetch
}
# verify that all init.d scripts are openrc runscripts
initdcheck() {
local i
for i in $source; do
case $i in
*.initd)
head -n 1 "$srcdir"/$i | grep -q '/sbin/runscript' \
&& continue
error "$i is not an openrc #!/sbin/runscript"
return 1
;;
esac
done
}
# unpack the sources
default_unpack() {
local u
if [ -z "$force" ]; then
md5check || return 1
initdcheck || return 1
fi
mkdir -p "$srcdir"
for u in $source; do