2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-14 11:48:57 +00:00

29 lines
901 B
Plaintext
Raw Normal View History

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