From: Sven Höxter Date: Wed, 14 Mar 2018 18:17:17 +0000 (+0100) Subject: add a simple upload my debian package to my artifactory script X-Git-Url: http://git.sven.stormbind.net/?p=sven%2Fscripts.git;a=commitdiff_plain;h=46275912fe8e05bbefb2a0f5d1b5e3229230ff9b add a simple upload my debian package to my artifactory script Very simple script, checks nearly nothing and uploads to a flat repository layout. --- diff --git a/artifactory/aput.sh b/artifactory/aput.sh new file mode 100755 index 0000000..5ac296d --- /dev/null +++ b/artifactory/aput.sh @@ -0,0 +1,62 @@ +#!/bin/bash + +APIKEY="" +DISTROS="jessie stretch" +COMPONENT="main" +BASE_URL="https://artifactory.foobar/artifactory" +REPO="foobar" +REPO_URL="${BASE_URL}/${REPO}" + +function help { + cat <