]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
misc-progs: Drop unused applejuicectrl
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 5 Jan 2021 16:59:14 +0000 (16:59 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 6 Jan 2021 14:48:34 +0000 (14:48 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/misc-progs
src/misc-progs/Makefile
src/misc-progs/applejuicectrl.c [deleted file]

index c48a474b2264b02aa9173e413052046c889a645d..90f0b2228aba0e54fa66d5730aafc32ac825a1d1 100644 (file)
@@ -1,5 +1,4 @@
 usr/local/bin/addonctrl
-#usr/local/bin/applejuicectrl
 usr/local/bin/backupctrl
 usr/local/bin/captivectrl
 #usr/local/bin/clamavctrl
index bea54e7730446a1796871c96bd886311d0b7c31a..a66a381357cb98e48f2cbb3503cb2e56bda917c6 100644 (file)
@@ -25,7 +25,7 @@ LIBS    = -lsmooth -lnewt
 PROGS = iowrap
 SUID_PROGS = squidctrl sshctrl ipfirereboot \
        ipsecctrl timectrl dhcpctrl suricatactrl \
-       applejuicectrl rebuildhosts backupctrl collectdctrl \
+       rebuildhosts backupctrl collectdctrl \
        logwatch wioscan wiohelper openvpnctrl firewallctrl \
        wirelessctrl getipstat qosctrl launch-ether-wake \
        redctrl syslogdctrl extrahdctrl sambactrl upnpctrl \
diff --git a/src/misc-progs/applejuicectrl.c b/src/misc-progs/applejuicectrl.c
deleted file mode 100644 (file)
index 9d63e51..0000000
+++ /dev/null
@@ -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;
-}