From: Heiko Z. <smi...@us...> - 2016-05-14 13:38:06
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29231/scripts Modified Files: inetutils Added Files: iputils Log Message: iputils is back! this will give "ping -l" again Index: inetutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/inetutils,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- inetutils 6 Oct 2015 00:59:16 -0000 1.11 +++ inetutils 14 May 2016 13:38:04 -0000 1.12 @@ -26,7 +26,8 @@ --disable-logger --disable-syslogd \ --disable-whois --disable-servers \ --disable-ifconfig --disable-rlogin \ - --disable-rcp --disable-rexec --disable-rsh || exit 1 + --disable-rcp --disable-rexec --disable-rsh \ + --disable-ping || exit 1 make $PMAKE all || exit 1 --- NEW FILE: iputils --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/iputils,v $ # $Revision: 1.18 $ # $Date: 2016/05/14 13:38:04 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) make $PMAKE || exit 1 ;; install ) cp -av traceroute6 $CDDIR/usr/sbin || exit 1 cp -av ping $CDDIR/bin || exit 1 cp -av ping6 $CDDIR/bin || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |