]>
git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/misc-progs/clamavctrl.c
09f5398720eb9793c2a1834c07094237ab681e36
1 /* This file is part of the IPFire Firewall.
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
12 #include <sys/types.h>
16 int main(int argc
, char *argv
[]) {
22 fprintf(stderr
, "\nNo argument given.\n\nclamavctrl (start|stop|restart)\n\n");
26 if (strcmp(argv
[1], "start") == 0) {
27 safe_system("/etc/rc.d/init.d/clamav start");
28 } else if (strcmp(argv
[1], "stop") == 0) {
29 safe_system("/etc/rc.d/init.d/clamav stop");
30 } else if (strcmp(argv
[1], "restart") == 0) {
31 safe_system("/etc/rc.d/init.d/clamav restart");
32 } else if (strcmp(argv
[1], "enable") == 0) {
33 safe_system("ln -fs ../init.d/clamav /etc/rc.d/rc3.d/S20clamav >/dev/null 2>&1");
34 safe_system("ln -fs ../init.d/clamav /etc/rc.d/rc0.d/K80clamav >/dev/null 2>&1");
35 safe_system("ln -fs ../init.d/clamav /etc/rc.d/rc6.d/K80clamav >/dev/null 2>&1");
36 } else if (strcmp(argv
[1], "disable") == 0) {
37 safe_system("rm -f /etc/rc.d/rc*.d/*clamav >/dev/null 2>&1");
39 fprintf(stderr
, "\nBad argument given.\n\nclamavctrl (start|stop|restart)\n\n");