2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-15 20:27:50 +00:00

24 lines
664 B
Plaintext
Raw Normal View History

run_remote() {
2020-08-20 16:20:02 -04:00
echo Running "'$*' from https://$mgr/confluent-public/os/$profile/scripts/"
cd $(mktemp -d)
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
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
shift
./$cmd $*
2020-08-20 16:20:02 -04:00
echo "'$*' exited with code $?"
cd -
}
run_remote_python() {
2020-08-20 16:20:02 -04:00
echo -n Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
cd $(mktemp -d)
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
/usr/libexec/platform-python $*
2020-08-20 16:20:02 -04:00
echo "'$*' exited with code $?"
cd -
}