diff options
author | Chris Evich <cevich@redhat.com> | 2019-09-11 13:59:31 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-09-11 14:03:20 -0400 |
commit | 866d4763a16f6e4f072736cced0aa830de79abf5 (patch) | |
tree | 6a4408ca938eb9dc0e2f5eeeb45bc282aaa73df1 | |
parent | 79ebb5f254d6f3498500f823cf1b856fed2e6149 (diff) | |
download | podman-866d4763a16f6e4f072736cced0aa830de79abf5.tar.gz podman-866d4763a16f6e4f072736cced0aa830de79abf5.tar.bz2 podman-866d4763a16f6e4f072736cced0aa830de79abf5.zip |
Cirrus: Fix unnecessary setsebool
By mistake this was added to run for the image-building-VM and is not
supported. Kill it.
Signed-off-by: Chris Evich <cevich@redhat.com>
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 7c7659169..c1a01d6ab 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -50,9 +50,7 @@ case "${OS_REL_VER}" in bash "$SCRIPT_BASE/add_second_partition.sh"; fi ;; centos-7) # Current VM is an image-builder-image no local podman/testing - echo "No further setup required for VM image building" - # All SELinux distros need this for systemd-in-a-container - setsebool container_manage_cgroup true + echo "No further setup required for VM image building" exit 0 ;; *) bad_os_id_ver ;; |