mirror of
https://github.com/xcat2/confluent.git
synced 2024-12-24 04:01:39 +00:00
Add more verbosity to remote functions
This commit is contained in:
parent
814857a706
commit
13636097f5
@ -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 -
|
||||
}
|
||||
|
@ -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 -
|
||||
}
|
||||
|
@ -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 -
|
||||
}
|
||||
|
@ -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 -
|
||||
}
|
||||
|
@ -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 -
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user