]>
git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/misc-progs/dnsmasqctrl.c
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\ndnsmasqctrl (restart)\n\n");
26 if (strcmp(argv
[1], "restart") == 0) {
27 safe_system("/etc/rc.d/init.d/dnsmasq restart");
29 fprintf(stderr
, "\nBad argument given.\n\ndnsmasqctrl (restart)\n\n");