mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-22 08:52:58 +02:00
Fixes:
* libPNG12 fehlte für makegraphs * md5sums erhielten den falschen Namen (ohne Unterstrich) Geändert: * QoS leicht erweitert. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@253 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -19612,9 +19612,9 @@ usr/lib/libpcap.so.0.8
|
||||
#usr/lib/libpng.la
|
||||
usr/lib/libpng.so
|
||||
#usr/lib/libpng12.la
|
||||
#usr/lib/libpng12.so
|
||||
#usr/lib/libpng12.so.0
|
||||
#usr/lib/libpng12.so.0.12.0
|
||||
usr/lib/libpng12.so
|
||||
usr/lib/libpng12.so.0
|
||||
usr/lib/libpng12.so.0.12.0
|
||||
#usr/lib/pkgconfig/libpng.pc
|
||||
#usr/lib/pkgconfig/libpng12.pc
|
||||
#usr/share/man/man3/libpng.3
|
||||
@@ -22575,6 +22575,7 @@ usr/local/bin/ipsecctrl
|
||||
usr/local/bin/launch-ether-wake
|
||||
usr/local/bin/logwatch
|
||||
usr/local/bin/openvpnctrl
|
||||
usr/local/bin/qosctrl
|
||||
usr/local/bin/rebuildhosts
|
||||
usr/local/bin/restartdhcp
|
||||
usr/local/bin/restartntpd
|
||||
|
||||
@@ -22,7 +22,7 @@ int main(int argc, char *argv[]) {
|
||||
exit(1);
|
||||
|
||||
if (argc < 2) {
|
||||
fprintf(stderr, "\nNo argument given.\n\nqosctrl (start|clear|status)\n\n");
|
||||
fprintf(stderr, "\nNo argument given.\n\nqosctrl (start|stop|restart|status)\n\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -38,12 +38,14 @@ int main(int argc, char *argv[]) {
|
||||
{
|
||||
safe_system("/var/ipfire/qos/bin/qos.sh start");
|
||||
}
|
||||
} else if (strcmp(argv[1], "clear") == 0) {
|
||||
} else if (strcmp(argv[1], "stop") == 0) {
|
||||
safe_system("/var/ipfire/qos/bin/qos.sh clear");
|
||||
} else if (strcmp(argv[1], "status") == 0) {
|
||||
safe_system("/var/ipfire/qos/bin/qos.sh status");
|
||||
} else if (strcmp(argv[1], "restart") == 0) {
|
||||
safe_system("/var/ipfire/qos/bin/qos.sh restart");
|
||||
} else {
|
||||
fprintf(stderr, "\nBad argument given.\n\nqosctrl (start|clear|status)\n\n");
|
||||
fprintf(stderr, "\nBad argument given.\n\nqosctrl (start|stop|restart|status)\n\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
usr/bin/ncftp
|
||||
usr/bin/ncftpbatch
|
||||
usr/bin/ncftpbookmarks
|
||||
usr/bin/ncftpget
|
||||
usr/bin/ncftpls
|
||||
usr/bin/ncftpput
|
||||
usr/bin/ncftpspooler
|
||||
#usr/include/ncftp.h
|
||||
#usr/include/ncftp_errno.h
|
||||
usr/lib/libncftp.so
|
||||
usr/lib/libncftp.so.2
|
||||
#usr/share/man/man1/ncftp.1
|
||||
#usr/share/man/man1/ncftpbatch.1
|
||||
#usr/share/man/man1/ncftpget.1
|
||||
#usr/share/man/man1/ncftpls.1
|
||||
#usr/share/man/man1/ncftpput.1
|
||||
#usr/share/man/man1/ncftpspooler.1
|
||||
|
||||
@@ -26,7 +26,7 @@ else
|
||||
cd /install/packages/package && cat ROOTFILES | grep -v "#" > ROOTFILES
|
||||
tar cfz ../$PROG-${VER}_$PAK_VER.tar.gz files.tgz install.sh uninstall.sh ROOTFILES
|
||||
|
||||
cd /install/packages && md5sum $PROG*.tar.gz > $PROG-$VER-$PAK_VER.tar.gz.md5
|
||||
cd /install/packages && md5sum $PROG*.tar.gz > $PROG-${VER}_$PAK_VER.tar.gz.md5
|
||||
cd /install/packages && md5sum $PROG*.tar.gz >> all-progs.md5
|
||||
rm -rf /install/packages/package
|
||||
exit 0
|
||||
|
||||
Reference in New Issue
Block a user