blob: 3fdc8d3737b938af66f48d610985723df0e58f32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/bash
# REPO is an Environment variable
set -x
echo "STARTING PACKAGECLOUD PUSH"
sleep 10
if [ -f /usr/bin/zypper ]; then
FACTER_OS="openSUSE"
else
FACTER_OS=$(/usr/bin/facter operatingsystem)
fi
if [ -f ~/.packagecloud ]; then
case "$FACTER_OS" in
Ubuntu)
FACTER_LSBNAME=$(/usr/bin/facter lsbdistcodename)
DEBS=$(find . -type f -iname '*.deb')
package_cloud push "${REPO}/${STREAM}/ubuntu/${FACTER_LSBNAME}/main/" ${DEBS}
;;
CentOS)
FACTER_OSMAJREL=$(/usr/bin/facter operatingsystemmajrelease)
FACTER_ARCH=$(/usr/bin/facter architecture)
RPMS=$(find . -type f -iregex '.*/.*\.\(s\)?rpm')
package_cloud push "${REPO}/${STREAM}/el/${FACTER_OSMAJREL}/os/${FACTER_ARCH}/" ${RPMS}
;;
openSUSE)
# Use /etc/os-release on openSUSE to get $VERSION
. /etc/os-release
RPMS=$(find . -type f -iregex '.*/.*\.\(s\)?rpm' | grep -v 'vpp-ext-deps')
VPP_EXT_RPMS=$(find . -type f -iregex '.*/.*\.\(s\)?rpm' | grep 'vpp-ext-deps')
package_cloud push "${REPO}/${STREAM}/opensuse/${VERSION}/" ${RPMS}
# This file may have already been uploaded. Don't error out if it exists.
package_cloud push "${REPO}/${STREAM}/opensuse/${VERSION}/" ${VPP_EXT_RPMS} --skip-errors
;;
esac
fi
|