mirror of
https://github.com/xcat2/confluent.git
synced 2025-01-28 11:57:37 +00:00
e7cb3f9a0c
The refactoring put the files in new places, add those to tracking.
15 lines
299 B
Plaintext
15 lines
299 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 -
|
|
}
|