mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 18:32:57 +02:00
Changed pakfire logging facility to syslog and added to core12
This commit is contained in:
@@ -65,7 +65,8 @@ my %sections = (
|
||||
'auth' => '(\w+\(pam_unix\)\[.*\]: )',
|
||||
'kernel' => '(kernel: (?!DROP_))',
|
||||
'ipsec' => '(ipsec_[\w_]+: |pluto\[.*\]: |vpnwatch: )',
|
||||
'openvpn' => '(openvpnserver)\[.*\]: '
|
||||
'openvpn' => '(openvpnserver)\[.*\]: ',
|
||||
'pakfire' => '(pakfire:) '
|
||||
);
|
||||
|
||||
# Translations for the %sections array.
|
||||
@@ -76,13 +77,14 @@ my %trsections = (
|
||||
'dhcp' => "$Lang::tr{'dhcp server'}",
|
||||
'cron' => 'Cron',
|
||||
'collectd' => 'Collectd',
|
||||
'clamav' => 'ClamAV',
|
||||
'clamav' => 'ClamAV',
|
||||
'ntp' => 'NTP',
|
||||
'ssh' => 'SSH',
|
||||
'auth' => "$Lang::tr{'loginlogout'}",
|
||||
'kernel' => "$Lang::tr{'kernel'}",
|
||||
'ipsec' => 'IPSec',
|
||||
'openvpn' => 'OpenVPN',
|
||||
'pakfire' => 'Pakfire',
|
||||
);
|
||||
|
||||
|
||||
|
||||
@@ -61,7 +61,6 @@ if ($pakfiresettings{'ACTION'} eq 'install'){
|
||||
if ("$pakfiresettings{'FORCE'}" eq "on") {
|
||||
my $command = "/usr/local/bin/pakfire install --non-interactive --no-colors $pakfiresettings{'INSPAKS'} &>/dev/null &";
|
||||
system("$command");
|
||||
sleep(2);
|
||||
} else {
|
||||
&Header::openbox("100%", "center", "Abfrage");
|
||||
my @output = `/usr/local/bin/pakfire resolvedeps --no-colors $pakfiresettings{'INSPAKS'}`;
|
||||
@@ -101,7 +100,6 @@ END
|
||||
if ("$pakfiresettings{'FORCE'}" eq "on") {
|
||||
my $command = "/usr/local/bin/pakfire remove --non-interactive --no-colors $pakfiresettings{'DELPAKS'} &>/dev/null &";
|
||||
system("$command");
|
||||
sleep(2);
|
||||
} else {
|
||||
&Header::openbox("100%", "center", "Abfrage");
|
||||
my @output = `/usr/local/bin/pakfire resolvedeps --no-colors $pakfiresettings{'DELPAKS'}`;
|
||||
@@ -141,8 +139,8 @@ END
|
||||
system("/usr/local/bin/pakfire update --force --no-colors &>/dev/null");
|
||||
|
||||
} elsif ($pakfiresettings{'ACTION'} eq 'upgrade') {
|
||||
|
||||
system("/usr/local/bin/pakfire upgrade -y --no-colors &>/dev/null");
|
||||
my $command = "/usr/local/bin/pakfire upgrade -y --no-colors &>/dev/null";
|
||||
system("$command");
|
||||
refreshpage();
|
||||
|
||||
} elsif ($pakfiresettings{'ACTION'} eq "$Lang::tr{'save'}") {
|
||||
|
||||
Reference in New Issue
Block a user