2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-12-24 12:11:52 +00:00

Make output consistent for shell/python remote exec

This commit is contained in:
Jarrod Johnson 2020-08-21 17:03:12 -04:00
parent 67920980c8
commit b8aa54fb8e
5 changed files with 17 additions and 5 deletions

View File

@ -17,7 +17,9 @@ run_remote() {
}
run_remote_python() {
echo -n Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
echo
echo '---------------------------------------------------------------------------'
echo 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 $*

View File

@ -17,7 +17,9 @@ run_remote() {
}
run_remote_python() {
echo -n Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
echo
echo '---------------------------------------------------------------------------'
echo 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 $*

View File

@ -17,7 +17,9 @@ run_remote() {
}
run_remote_python() {
echo -n Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
echo
echo '---------------------------------------------------------------------------'
echo 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 $*

View File

@ -17,7 +17,9 @@ run_remote() {
}
run_remote_python() {
echo -n Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
echo
echo '---------------------------------------------------------------------------'
echo 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 $*

View File

@ -1,5 +1,7 @@
run_remote() {
requestedcmd="'$*'"
echo
echo '---------------------------------------------------------------------------'
echo Running $requestedcmd from https://$mgr/confluent-public/os/$profile/scripts/
cd $(mktemp -d)
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
@ -12,7 +14,9 @@ run_remote() {
}
run_remote_python() {
echo -n Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
echo
echo '---------------------------------------------------------------------------'
echo 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
python3 $*