From d0b87442270649fb38f2c2e08ec80ef7f49df782 Mon Sep 17 00:00:00 2001 From: Alexander Postol Date: Tue, 9 Feb 2021 10:38:15 +0300 Subject: [PATCH] add check yast sysctl conf exist --- openvpn-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 38d076f..1dda565 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -348,7 +348,7 @@ crl-verify crl.pem" >> $conf_path/server.conf echo "explicit-exit-notify" >> $conf_path/server.conf fi # Enable net.ipv4.ip_forward for the system - if [[ "$os" == "opensuse-leap" ]]; then + if [[ "$os" == "opensuse-leap" && -f /etc/sysctl.d/70-yast.conf ]]; then sed '1 s/0/1/' /etc/sysctl.d/70-yast.conf else echo 'net.ipv4.ip_forward=1' > /etc/sysctl.d/30-openvpn-forward.conf @@ -357,7 +357,7 @@ crl-verify crl.pem" >> $conf_path/server.conf echo 1 > /proc/sys/net/ipv4/ip_forward if [[ -n "$ip6" ]]; then # Enable net.ipv6.conf.all.forwarding for the system - if [[ "$os" == "opensuse-leap" ]]; then + if [[ "$os" == "opensuse-leap" && -f /etc/sysctl.d/70-yast.conf ]]; then sed '2 s/0/1/' /etc/sysctl.d/70-yast.conf else echo "net.ipv6.conf.all.forwarding=1" >> /etc/sysctl.d/30-openvpn-forward.conf