Sha256: 58945011ffca6f88e9e1d535295fad4dcdfb6a9223133750e4cfe9c2e77d2d55

Contents?: true

Size: 832 Bytes

Versions: 2

Compression:

Stored size: 832 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

mkdir -p done

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/
    echo "Done: $f"
  fi
done
echo "Uploaded files moved to done/ folder"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
foreman_inventory_upload-1.0.1 app/views/scripts/uploader.sh.erb
foreman_inventory_upload-1.0.0 app/views/scripts/uploader.sh.erb