Sha256: 9fd5f957f51b60b26d5296f9e805a25ef9a6f1b4699ab493685dd76dd5ec2481

Contents?: true

Size: 926 Bytes

Versions: 27

Compression:

Stored size: 926 Bytes

Contents

#! /bin/sh

DEST=<%= @upload_url %>
RH_USERNAME=<%= @rh_username %>

if [ -z "$FILES" ]
then
        FILES=./*.tar.gz
fi

if [ -n "$CER_PATH" ]
then
        AUTH_KEY="--cert"
        AUTH_VAL="$CER_PATH"
else
        if [ -z "$RH_USERNAME" ]
        then
                IFS= read -rp "Enter username: " RH_USERNAME
        fi

        if [ -z "$RH_PASSWORD" ]
        then
                IFS= read -rsp "Enter password: " RH_PASSWORD
        fi

        AUTH_KEY="-u"
        AUTH_VAL="\"$RH_USERNAME\":\"$RH_PASSWORD\""
fi

# /tmp/a b/x.pem
# curl --cert /tmp/a\ b/x.pem

SCRIPT_DIR=$(realpath "$(dirname "${BASH_SOURCE:-0}")")
DONE_DIR="$SCRIPT_DIR/done/"
mkdir -p $DONE_DIR

for f in $FILES
do
  curl -k -vvv -# --fail -F "file=@$f;type=application/vnd.redhat.qpc.tar+tgz" $DEST "$AUTH_KEY" "$AUTH_VAL"
  if [ $? -eq 0 ]; then
    mv $f $DONE_DIR
    echo "Done: $f"
  fi
done
echo "Uploaded files moved to done/ folder"

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
foreman_rh_cloud-1.0.4 lib/foreman_inventory_upload/scripts/uploader.sh.erb
foreman_rh_cloud-2.0.4 lib/foreman_inventory_upload/scripts/uploader.sh.erb
foreman_inventory_upload-2.0.4.pre.2 app/views/scripts/uploader.sh.erb
foreman_inventory_upload-2.0.4.pre.1 app/views/scripts/uploader.sh.erb
foreman_inventory_upload-2.0.3 app/views/scripts/uploader.sh.erb
foreman_inventory_upload-1.0.3 app/views/scripts/uploader.sh.erb
foreman_inventory_upload-1.0.2 app/views/scripts/uploader.sh.erb