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

Add more verbosity to remote functions

This commit is contained in:
Jarrod Johnson 2020-08-20 16:20:02 -04:00
parent 814857a706
commit 13636097f5
5 changed files with 20 additions and 0 deletions

View File

@ -1,4 +1,5 @@
run_remote() {
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
@ -8,12 +9,15 @@ run_remote() {
fi
shift
./$cmd $*
echo "'$*' exited with code $?"
cd -
}
run_remote_python() {
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 $*
echo "'$*' exited with code $?"
cd -
}

View File

@ -1,4 +1,5 @@
run_remote() {
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
@ -8,12 +9,15 @@ run_remote() {
fi
shift
./$cmd $*
echo "'$*' exited with code $?"
cd -
}
run_remote_python() {
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 $*
echo "'$*' exited with code $?"
cd -
}

View File

@ -1,4 +1,5 @@
run_remote() {
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
@ -8,12 +9,15 @@ run_remote() {
fi
shift
./$cmd $*
echo "'$*' exited with code $?"
cd -
}
run_remote_python() {
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 $*
echo "'$*' exited with code $?"
cd -
}

View File

@ -1,4 +1,5 @@
run_remote() {
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
@ -8,12 +9,15 @@ run_remote() {
fi
shift
./$cmd $*
echo "'$*' exited with code $?"
cd -
}
run_remote_python() {
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 $*
echo "'$*' exited with code $?"
cd -
}

View File

@ -1,16 +1,20 @@
run_remote() {
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
shift
./$cmd $*
echo "'$*' exited with code $?"
cd -
}
run_remote_python() {
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
python3 $*
echo "'$*' exited with code $?"
cd -
}