Browse Source

fedora: override iptables configuration on initial installation

Otherwise Qubes-specific configuration will not be placed at all (in
Fedora 21, which provide some example iptables config).
Marek Marczykowski-Górecki 9 years ago
parent
commit
7abc2c2779
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rpm_spec/core-vm.spec

+ 2 - 2
rpm_spec/core-vm.spec

@@ -259,10 +259,10 @@ done
 
 # Copy ip(|6)tables into place if they do not already exist in filesystem.
 # This prevents conflict with iptables-service
-if [ ! -f '/etc/sysconfig/iptables' ]; then
+if [ ! -f '/etc/sysconfig/iptables' -o $1 = 1 ]; then
   cp -p /usr/lib/qubes/init/iptables /etc/sysconfig/iptables
 fi
-if [ ! -f '/etc/sysconfig/ip6tables' ]; then
+if [ ! -f '/etc/sysconfig/ip6tables' -o $1 = 1 ]; then
   cp -p /usr/lib/qubes/init/ip6tables /etc/sysconfig/ip6tables
 fi