From c10888ace9060d55e07ebc95007aad87932f522b Mon Sep 17 00:00:00 2001 From: Ryan Cook Date: Tue, 19 Oct 2021 10:38:56 -0400 Subject: [PATCH] setting new location of selinux files --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index c67bc3b457..2c70a778b9 100755 --- a/install.sh +++ b/install.sh @@ -64,8 +64,8 @@ register_subs() { build_selinux_policy() { ## Workaround until packaged as RPM sudo dnf -y install selinux-policy-devel - curl -L -o /tmp/microshift.fc https://raw.githubusercontent.com/redhat-et/microshift/main/selinux/microshift.fc - curl -L -o /tmp/microshift.te https://raw.githubusercontent.com/redhat-et/microshift/main/selinux/microshift.te + curl -L -o /tmp/microshift.fc https://raw.githubusercontent.com/redhat-et/microshift/main/packaging/selinux/microshift.fc + curl -L -o /tmp/microshift.te https://raw.githubusercontent.com/redhat-et/microshift/main/packaging/selinux/microshift.te make -f /usr/share/selinux/devel/Makefile -C /tmp sudo dnf -y remove selinux-policy-devel }