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

Fix suse run_remote_parts

Behave more consistently
This commit is contained in:
Jarrod Johnson 2021-05-03 15:36:27 -04:00
parent 7676c4fd26
commit 508e5b4a46

View File

@ -16,6 +16,7 @@ run_remote() {
tmpdir=$(mktemp -d)
echo Executing in $tmpdir
cd $tmpdir
mkdir -p $(dirname $1)
curl -f -sS https://$confluent_mgr/confluent-public/os/$confluent_profile/scripts/$1 > $1
if [ $? != 0 ]; then echo $requestedcmd failed to download; return 1; fi
chmod +x $1
@ -61,6 +62,7 @@ run_remote_python() {
tmpdir=$(mktemp -d)
echo Executing in $tmpdir
cd $tmpdir
mkdir -p $(dirname $1)
curl -f -sS https://$confluent_mgr/confluent-public/os/$confluent_profile/scripts/$1 > $1
if [ $? != 0 ]; then echo "'$*'" failed to download; return 1; fi
python3 $*