little changes in core8 - backup before extract

changed if clause in wirelessctrl if key is not existing eq on


git-svn-id: http://svn.ipfire.org/svn/ipfire/branches/2.1/trunk@1228 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
maniacikarus
2008-02-23 14:02:22 +00:00
parent 72f792bc80
commit 9fb6a10b7d
3 changed files with 5 additions and 6 deletions

View File

@@ -1,7 +1,6 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
depmod -a
echo "DROPWIRELESSFORWARD=on" >> /var/ipfire/optionsfw/settings
echo "DROPWIRELESSINPUT=on" >> /var/ipfire/optionsfw/settings
/usr/local/bin/backupctrl exclude >/dev/null 2>&1

View File

@@ -1,5 +1,5 @@
#!/bin/bash
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
extract_files
depmod -a
/usr/local/bin/backupctrl exclude >/dev/null 2>&1

View File

@@ -102,12 +102,12 @@ int main(void)
}
/* with this rule you can disable the logging of the dropped wireless input packets*/
if(findkey(kv, "DROPWIRELESSINPUT", buffer) && !strcmp(buffer,"on")){
if(!findkey(kv, "DROPWIRELESSINPUT", buffer) || strcmp(buffer,"off")){
snprintf(command, STRING_SIZE-1, "/sbin/iptables -A WIRELESSINPUT -i %s -j LOG --log-prefix 'DROP_Wirelessinput'", blue_dev);
safe_system(command);
}
/* with this rule you can disable the logging of the dropped wireless forward packets*/
if(findkey(kv, "DROPWIRELESSFORWARD", buffer) && !strcmp(buffer,"on")){
if(!findkey(kv, "DROPWIRELESSFORWARD", buffer) || strcmp(buffer,"off")){
snprintf(command, STRING_SIZE-1, "/sbin/iptables -A WIRELESSFORWARD -i %s -j LOG --log-prefix 'DROP_Wirelessforward'", blue_dev);
safe_system(command);
}