mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
misc-progs: Drop unused applejuicectrl
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
usr/local/bin/addonctrl
|
usr/local/bin/addonctrl
|
||||||
#usr/local/bin/applejuicectrl
|
|
||||||
usr/local/bin/backupctrl
|
usr/local/bin/backupctrl
|
||||||
usr/local/bin/captivectrl
|
usr/local/bin/captivectrl
|
||||||
#usr/local/bin/clamavctrl
|
#usr/local/bin/clamavctrl
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ LIBS = -lsmooth -lnewt
|
|||||||
PROGS = iowrap
|
PROGS = iowrap
|
||||||
SUID_PROGS = squidctrl sshctrl ipfirereboot \
|
SUID_PROGS = squidctrl sshctrl ipfirereboot \
|
||||||
ipsecctrl timectrl dhcpctrl suricatactrl \
|
ipsecctrl timectrl dhcpctrl suricatactrl \
|
||||||
applejuicectrl rebuildhosts backupctrl collectdctrl \
|
rebuildhosts backupctrl collectdctrl \
|
||||||
logwatch wioscan wiohelper openvpnctrl firewallctrl \
|
logwatch wioscan wiohelper openvpnctrl firewallctrl \
|
||||||
wirelessctrl getipstat qosctrl launch-ether-wake \
|
wirelessctrl getipstat qosctrl launch-ether-wake \
|
||||||
redctrl syslogdctrl extrahdctrl sambactrl upnpctrl \
|
redctrl syslogdctrl extrahdctrl sambactrl upnpctrl \
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
/* This file is part of the IPFire Firewall.
|
|
||||||
*
|
|
||||||
* This program is distributed under the terms of the GNU General Public
|
|
||||||
* Licence. See the file COPYING for details.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include "setuid.h"
|
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
|
||||||
|
|
||||||
if (!(initsetuid()))
|
|
||||||
exit(1);
|
|
||||||
|
|
||||||
if (argc < 2) {
|
|
||||||
fprintf(stderr, "\nNo argument given.\n\napplejuicectrl (start|stop|restart)\n\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strcmp(argv[1], "start") == 0) {
|
|
||||||
safe_system("/etc/rc.d/init.d/applejuice start");
|
|
||||||
} else if (strcmp(argv[1], "stop") == 0) {
|
|
||||||
safe_system("/etc/rc.d/init.d/applejuice stop");
|
|
||||||
} else if (strcmp(argv[1], "restart") == 0) {
|
|
||||||
safe_system("/etc/rc.d/init.d/applejuice restart");
|
|
||||||
} else if (strcmp(argv[1], "enable") == 0) {
|
|
||||||
safe_system("ln -fs ../init.d/applejuice /etc/rc.d/rc3.d/S99applejuice >/dev/null 2>&1");
|
|
||||||
safe_system("ln -fs ../init.d/applejuice /etc/rc.d/rc0.d/K00applejuice >/dev/null 2>&1");
|
|
||||||
safe_system("ln -fs ../init.d/applejuice /etc/rc.d/rc6.d/K00applejuice >/dev/null 2>&1");
|
|
||||||
} else if (strcmp(argv[1], "disable") == 0) {
|
|
||||||
safe_system("rm -f /etc/rc.d/rc*.d/*applejuice >/dev/null 2>&1");
|
|
||||||
} else {
|
|
||||||
fprintf(stderr, "\nBad argument given.\n\napplejuicectrl (start|stop|restart)\n\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user