]>
git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/misc-progs/pakfire.c
1 /* This file is part of the IPFire Firewall.
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
12 #include <sys/types.h>
16 int main(int argc
, char *argv
[]) {
19 char add
[STRING_SIZE
];
24 snprintf(command
, STRING_SIZE
, "/opt/pakfire/pakfire");
26 for (i
= 1; i
< argc
; i
++) {
27 sprintf(add
, " %s", argv
[i
]);
31 return safe_system(command
);