Files
bpfire/src/misc-progs/backupctrl.c
Michael Tremer c33f477f5b misc-progs: backupctrl: Use new run() function
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-01-27 21:06:57 +00:00

16 lines
320 B
C

/* 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 "setuid.h"
int main(int argc, char** argv) {
if (!initsetuid())
exit(1);
return run("/var/ipfire/backup/bin/backup.pl", argv);
}