mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-20 16:02:59 +02:00
CGI erweitert und mit neuen Funktionen versehen. Paketformat grundlegend geaendert. UpdateBooster gefixt. Avira+Avast als Updatequelle eingefuegt. VPN-Watch ins log.dat. DHCP-Server startet nach der Installation. Einen String im Installer verschoenert :D git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@639 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
33 lines
623 B
C
33 lines
623 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 <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include "setuid.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int i;
|
|
char command[1024];
|
|
char add[STRING_SIZE];
|
|
|
|
if (!(initsetuid()))
|
|
exit(1);
|
|
|
|
snprintf(command, STRING_SIZE, "/opt/pakfire/pakfire");
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
sprintf(add, " %s", argv[i]);
|
|
strcat(command, add);
|
|
}
|
|
|
|
return safe_system(command);
|
|
}
|