mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 04:52:59 +02:00
16 lines
320 B
C
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);
|
|
}
|