소스 검색

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 년 전
부모
커밋
7abc2c2779
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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