]> git.ipfire.org Git - ipfire-2.x.git/blame - src/misc-progs/collectdctrl.c
suricata: Fix amount of listened nfqueues
[ipfire-2.x.git] / src / misc-progs / collectdctrl.c
CommitLineData
91c2eaec
AM
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 "setuid.h"
14
15int main(int argc, char *argv[]) {
16 if (!(initsetuid()))
17 exit(1);
18
19 if (argc < 2) {
20 fprintf(stderr, "\nNo argument given.\n\ncollectdctrl (start|stop|restart)\n\n");
21 exit(1);
22 }
23
24 if (strcmp(argv[1], "restart") == 0) {
25 safe_system("/etc/rc.d/init.d/collectd restart");
26
27 } else if (strcmp(argv[1], "stop") == 0) {
28 safe_system("/etc/rc.d/init.d/collectd stop");
29
30 } else if (strcmp(argv[1], "start") == 0) {
31 safe_system("/etc/rc.d/init.d/collectd start");
32
33 } else {
34 fprintf(stderr, "\nBad argument given.\n\ncollectdctrl (start|stop|restart)\n\n");
35 exit(1);
36 }
37
38 return 0;
39}