From 46275912fe8e05bbefb2a0f5d1b5e3229230ff9b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20H=C3=B6xter?= Date: Wed, 14 Mar 2018 19:17:17 +0100 Subject: [PATCH] add a simple upload my debian package to my artifactory script Very simple script, checks nearly nothing and uploads to a flat repository layout. --- artifactory/aput.sh | 62 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100755 artifactory/aput.sh 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 <