]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/misc-progs/squidctrl.c
Fix core28 updater kernel version
[people/pmueller/ipfire-2.x.git] / src / misc-progs / squidctrl.c
1 /* This file is part of the IPFire Firewall.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 */
7
8 #include <stdlib.h>
9 #include <stdio.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include <sys/types.h>
13 #include <fcntl.h>
14 #include "setuid.h"
15
16 int main(int argc, char *argv[]) {
17
18 if (!(initsetuid()))
19 exit(1);
20
21 if (argc < 2) {
22 fprintf(stderr, "\nNo argument given.\n\nsquidctrl (start|stop|restart|flush|reconfigure)\n\n");
23 exit(1);
24 }
25
26 if (strcmp(argv[1], "start") == 0) {
27 safe_system("/etc/rc.d/init.d/squid start");
28 } else if (strcmp(argv[1], "stop") == 0) {
29 safe_system("/etc/rc.d/init.d/squid stop");
30 } else if (strcmp(argv[1], "restart") == 0) {
31 safe_system("/etc/rc.d/init.d/squid restart");
32 } else if (strcmp(argv[1], "reconfigure") == 0) {
33 safe_system("/etc/rc.d/init.d/squid reconfigure");
34 } else if (strcmp(argv[1], "flush") == 0) {
35 safe_system("/etc/rc.d/init.d/squid flush");
36 } else if (strcmp(argv[1], "enable") == 0) {
37 safe_system("ln -fs ../init.d/squid /etc/rc.d/rc0.d/K00squid >/dev/null 2>&1");
38 safe_system("ln -fs ../init.d/squid /etc/rc.d/rc6.d/K00squid >/dev/null 2>&1");
39 } else if (strcmp(argv[1], "disable") == 0) {
40 safe_system("rm -f /etc/rc.d/rc*.d/*squid >/dev/null 2>&1");
41 } else {
42 fprintf(stderr, "\nBad argument given.\n\nsquidctrl (start|stop|restart|flush|reconfigure|setperms)\n\n");
43 exit(1);
44 }
45
46 return 0;
47 }