2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-08-22 03:00:29 +00:00
Files
confluent/confluent_osdeploy/el7/profiles/default/scripts/functions
Jarrod Johnson ac622d84b2 Add EL7 support
2020-07-23 12:29:43 -04:00

17 lines
327 B
Plaintext

run_remote() {
cd $(mktemp -d)
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
chmod +x $1
cmd=$1
shift
./$cmd $*
cd -
}
run_remote_python() {
cd $(mktemp -d)
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
/usr/libexec/platform-python $*
cd -
}