mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-23 01:53:28 +00:00
700afc6606
Sourcing the functions was causing a hang.
15 lines
301 B
Plaintext
15 lines
301 B
Plaintext
run_remote() {
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
chmod +x $1
|
|
./$1
|
|
cd -
|
|
}
|
|
|
|
run_remote_python() {
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
/usr/libexec/platform-python $1
|
|
cd -
|
|
}
|