]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blame - src/misc-progs/backupctrl.c
misc-progs: Set a reasonable default PATH variable
[people/mfischer/ipfire-2.x.git] / src / misc-progs / backupctrl.c
CommitLineData
8e8bbd9d
CS
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
8e8bbd9d
CS
8#include "setuid.h"
9
c33f477f
MT
10int main(int argc, char** argv) {
11 if (!initsetuid())
8e8bbd9d
CS
12 exit(1);
13
c33f477f 14 return run("/var/ipfire/backup/bin/backup.pl", argv);
8e8bbd9d 15}