Chore: Upgrade Jenkins-job-builder to 6.3.0
[releng/global-jjb.git] / jenkins-init-scripts / disable-firewall.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2015 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11
12 OS=$(facter operatingsystem)
13
14 case "$OS" in
15     Fedora)
16         systemctl stop firewalld
17     ;;
18     CentOS|RedHat)
19         os_release_ver="$(facter operatingsystemrelease | cut -d '.' -f1)"
20         if [ "${os_release_ver}" -lt "7" ]; then
21             service iptables stop
22         else
23             systemctl stop firewalld
24         fi
25     ;;
26     *)
27         # nothing to do
28     ;;
29 esac
30
31 # vim: ts=4 ts=4 sts=4 et :