mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
Adjust SELinux context on remote exec
To facilitate firstboot, context must be changed before execing remote content.
This commit is contained in:
parent
9304b41a12
commit
235c07063c
@ -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 -
|
||||
|
@ -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 -
|
||||
|
@ -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 -
|
||||
|
Loading…
Reference in New Issue
Block a user