]> git.ipfire.org Git - ipfire-2.x.git/blame - src/misc-progs/unboundctrl.c
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / src / misc-progs / unboundctrl.c
CommitLineData
df7340d2
MT
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
16int main(int argc, char *argv[]) {
17
18 if (!(initsetuid()))
19 exit(1);
20
21 if (argc < 2) {
bdb1f38a 22 fprintf(stderr, "\nNo argument given.\n\nunboundctrl restart|reload\n\n");
df7340d2
MT
23 exit(1);
24 }
25
26 if (strcmp(argv[1], "restart") == 0) {
27 safe_system("/etc/rc.d/init.d/unbound restart");
bdb1f38a
SS
28 } else if (strcmp(argv[1], "reload") == 0) {
29 safe_system("/etc/rc.d/init.d/unbound reload");
df7340d2 30 } else {
bdb1f38a 31 fprintf(stderr, "\nBad argument given.\n\nunboundctrl restart|reload\n\n");
df7340d2
MT
32 exit(1);
33 }
34
35 return 0;
36}