Create vmware-deliver-deb-package.sh
This commit is contained in:
parent
6729faf101
commit
d57c3775b2
|
@ -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
|
Loading…
Reference in New Issue