Create vmware-deliver-deb-package.sh

This commit is contained in:
Zakaria Guennoune 2022-04-14 10:37:21 +02:00 committed by GitHub
parent 6729faf101
commit d57c3775b2
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/bash
VERSION="$1"
BULLSEYEPACKAGES=`echo *.deb`
for i in $BULLSEYEPACKAGES
do
echo "Sending $i\n"
curl -u \"$NEXUS_USERNAME:$NEXUS_PASSWORD\" -H "Content-Type: multipart/form-data" --data-binary \"@/$i\" "https://apt.centreon.com/repository/$VERSION"
done