2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Adjust SELinux context on remote exec

To facilitate firstboot, context must be changed
before execing remote content.
This commit is contained in:
Jarrod Johnson 2020-07-24 15:32:13 -04:00
parent 9304b41a12
commit 235c07063c
3 changed files with 9 additions and 0 deletions

View File

@ -3,6 +3,9 @@ run_remote() {
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
chmod +x $1
cmd=$1
if [ -x /unr/bin/chcon ]; then
chcon system_u:object_r:bin_t:s0 $cmd
fi
shift
./$cmd $*
cd -

View File

@ -3,6 +3,9 @@ run_remote() {
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
chmod +x $1
cmd=$1
if [ -x /unr/bin/chcon ]; then
chcon system_u:object_r:bin_t:s0 $cmd
fi
shift
./$cmd $*
cd -

View File

@ -3,6 +3,9 @@ run_remote() {
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
chmod +x $1
cmd=$1
if [ -x /unr/bin/chcon ]; then
chcon system_u:object_r:bin_t:s0 $cmd
fi
shift
./$cmd $*
cd -