mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
A script to validate that the packages and dependencies listed in
the INDEX file exist.
This commit is contained in:
parent
731867d068
commit
4b5395fccb
1 changed files with 20 additions and 0 deletions
20
release/scripts/chkINDEX
Executable file
20
release/scripts/chkINDEX
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#! /bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
usage()
|
||||
{
|
||||
echo "$*" >&2
|
||||
echo "This script must be run from the top level package directory" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
[ $# -ge 1 ] && usage "usage: chkINDEX"
|
||||
[ -f INDEX ] || usage "INDEX file not found"
|
||||
|
||||
echo Checking for missing files
|
||||
sed 's,^\([^|]*\)|.*,All/\1.tgz,' INDEX | xargs ls -l >/dev/null
|
||||
|
||||
echo Checking for missing dependents
|
||||
awk -F'|' '{print $8}' INDEX | sed 's/ /\
|
||||
/g' | sort -u | sed -e /^$/d -e 's/\(.*\)/All\/\1.tgz/' | xargs ls -l >/dev/null
|
||||
Loading…
Reference in a new issue