Fix OS_CLOUD export for image validation
[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         if [ "$(facter operatingsystemrelease | cut -d '.' -f1)" -lt "7" ]; then
20             service iptables stop
21         else
22             systemctl stop firewalld
23         fi
24     ;;
25     *)
26         # nothing to do
27     ;;
28 esac
29
30 # vim: ts=4 ts=4 sts=4 et :