2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-23 01:53:28 +00:00
confluent/confluent_osdeploy/rhvh4/profiles/default/scripts/functions

29 lines
901 B
Plaintext
Raw Normal View History

run_remote() {
requestedcmd="'$*'"
echo
echo '---------------------------------------------------------------------------'
echo Running $requestedcmd from https://$mgr/confluent-public/os/$profile/scripts/
cd $(mktemp -d)
curl -f -sS https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
chmod +x $1
cmd=$1
2020-07-24 20:07:15 +00:00
if [ -x /usr/bin/chcon ]; then
chcon system_u:object_r:bin_t:s0 $cmd
fi
shift
./$cmd $*
echo "$requestedcmd exited with code $?"
cd -
}
run_remote_python() {
echo
echo '---------------------------------------------------------------------------'
echo Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
cd $(mktemp -d)
curl -f -sS https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
/usr/libexec/platform-python $*
2020-08-20 20:20:02 +00:00
echo "'$*' exited with code $?"
cd -
}