/* This file is part of the IPFire Firewall. * * This program is distributed under the terms of the GNU General Public * Licence. See the file COPYING for details. * */ #include #include "setuid.h" int main(void) { if (!(initsetuid())) exit(1); safe_system("/etc/rc.d/init.d/firewall restart >/dev/null 2>&1"); return 0; }