]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/misc-progs/pakfire.c
Set backupiso to 2.9beta3.
[people/pmueller/ipfire-2.x.git] / src / misc-progs / pakfire.c
CommitLineData
3b1471da
MT
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
8#include <stdlib.h>
9#include <stdio.h>
10#include <string.h>
11#include <unistd.h>
12#include <sys/types.h>
13#include <fcntl.h>
14#include "setuid.h"
15
16int main(int argc, char *argv[]) {
17 int i;
5b2a12ff
MT
18 char command[1024];
19 char add[STRING_SIZE];
3b1471da
MT
20
21 if (!(initsetuid()))
22 exit(1);
23
5b2a12ff 24 snprintf(command, STRING_SIZE, "/opt/pakfire/pakfire");
3b1471da 25
5b2a12ff 26 for (i = 1; i < argc; i++) {
3b1471da
MT
27 sprintf(add, " %s", argv[i]);
28 strcat(command, add);
29 }
30
31 return safe_system(command);
3b1471da 32}