|
| 1 | +#!/bin/bash |
| 2 | +set -eux |
| 3 | + |
| 4 | +SOURCE_DIR=${SOURCE_DIR:-$HOME/apt} |
| 5 | +APTLY_CONFIG=${APTLY_CONFIG:-$HOME/.aptly.conf} |
| 6 | + |
| 7 | +if [ -z "$1" ]; then |
| 8 | + echo "Usage: ./publish_all new_version" |
| 9 | + echo " | " |
| 10 | + echo " ----- " |
| 11 | + echo " 1.9.1 " |
| 12 | + echo |
| 13 | + exit 1 |
| 14 | +fi |
| 15 | +VERSION="$1" |
| 16 | + |
| 17 | +if [[ ! -d "$SOURCE_DIR" ]]; then |
| 18 | + echo "Missing source directory: $SOURCE_DIR" |
| 19 | +fi |
| 20 | + |
| 21 | +# Amazon Linux 2 |
| 22 | +echo "Publishing AmazonLinux 2" |
| 23 | +find "$SOURCE_DIR/amazonlinux/" -iname "*-bit-$VERSION-*aarch64*.rpm" -exec cp -fv {} "/var/www/apt.fluentbit.io/amazonlinux/2/aarch64" \; |
| 24 | +createrepo -dvp "/var/www/apt.fluentbit.io/amazonlinux/2/aarch64" |
| 25 | + |
| 26 | +find "$SOURCE_DIR/amazonlinux/" -iname "*-bit-$VERSION-*x86_64*.rpm" -exec cp -fv {} "/var/www/apt.fluentbit.io/amazonlinux/2/x86_64" \; |
| 27 | +createrepo -dvp "/var/www/apt.fluentbit.io/amazonlinux/2/x86_64" |
| 28 | + |
| 29 | +# Centos 7 |
| 30 | +echo "Publishing Centos 7" |
| 31 | +find "$SOURCE_DIR/centos/7/" -iname "*-bit-$VERSION-*aarch64*.rpm" -exec cp -fv {} "/var/www/apt.fluentbit.io/centos/7/aarch64" \; |
| 32 | +createrepo -dvp "/var/www/apt.fluentbit.io/centos/7/aarch64" |
| 33 | + |
| 34 | +find "$SOURCE_DIR/centos/7/" -iname "*-bit-$VERSION-*x86_64*.rpm" -exec cp -fv {} "/var/www/apt.fluentbit.io/centos/7/x86_64" \; |
| 35 | +createrepo -dvp "/var/www/apt.fluentbit.io/centos/7/x86_64" |
| 36 | + |
| 37 | +# Centos 8 |
| 38 | +echo "Publishing Centos 8" |
| 39 | +find "$SOURCE_DIR/centos/8/" -iname "*-bit-$VERSION-*aarch64*.rpm" -exec cp -fv {} "/var/www/apt.fluentbit.io/centos/8/aarch64" \; |
| 40 | +createrepo -dvp "/var/www/apt.fluentbit.io/centos/8/aarch64" |
| 41 | + |
| 42 | +find "$SOURCE_DIR/centos/8/" -iname "*-bit-$VERSION-*x86_64*.rpm" -exec cp -fv {} "/var/www/apt.fluentbit.io/centos/8/x86_64" \; |
| 43 | +createrepo -dvp "/var/www/apt.fluentbit.io/centos/8/x86_64" |
| 44 | + |
| 45 | +# Debian 10 Buster |
| 46 | +echo "Publishing Debian 10 Buster" |
| 47 | +# Conflicts otherwise with existing |
| 48 | +find "$SOURCE_DIR/debian/buster/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-debian-buster {} \; |
| 49 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-debian-buster-${VERSION}" from repo flb-debian-buster |
| 50 | +aptly -config="$APTLY_CONFIG" publish switch buster filesystem:debian/buster: "fluent-bit-debian-buster-${VERSION}" |
| 51 | + |
| 52 | +# Debian 11 Bullseye |
| 53 | +echo "Publishing Debian 11 Bullseye" |
| 54 | +find "$SOURCE_DIR/debian/bullseye/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-debian-bullseye {} \; |
| 55 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-debian-bullseye-${VERSION}" from repo flb-debian-bullseye |
| 56 | +aptly -config="$APTLY_CONFIG" publish switch bullseye filesystem:debian/bullseye: "fluent-bit-debian-bullseye-${VERSION}" |
| 57 | + |
| 58 | +# Raspbian 10 Buster |
| 59 | +echo "Publishing Raspbian 10 Buster" |
| 60 | +find "$SOURCE_DIR/raspbian/buster/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-raspbian-buster {} \; |
| 61 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-raspbian-buster-${VERSION}" from repo flb-raspbian-buster |
| 62 | +aptly -config="$APTLY_CONFIG" publish switch buster filesystem:raspbian/buster: "fluent-bit-raspbian-buster-${VERSION}" |
| 63 | + |
| 64 | +# Raspbian 11 Bullseye |
| 65 | +echo "Publishing Raspbian 11 Bullseye" |
| 66 | +find "$SOURCE_DIR/raspbian/bullseye/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-raspbian-bullseye {} \; |
| 67 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-raspbian-bullseye-${VERSION}" from repo flb-raspbian-bullseye |
| 68 | +aptly -config="$APTLY_CONFIG" publish switch bullseye filesystem:raspbian/bullseye: "fluent-bit-raspbian-bullseye-${VERSION}" |
| 69 | + |
| 70 | +# Ubuntu 16.04 Xenial |
| 71 | +echo "Publishing Ubuntu 16.04 Xenial" |
| 72 | +find "$SOURCE_DIR/ubuntu/xenial/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-ubuntu-xenial {} \; |
| 73 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-ubuntu-xenial-${VERSION}" from repo flb-ubuntu-xenial |
| 74 | +aptly -config="$APTLY_CONFIG" publish switch xenial filesystem:ubuntu/xenial: "fluent-bit-ubuntu-xenial-${VERSION}" |
| 75 | + |
| 76 | +# Ubuntu 18.04 Bionic |
| 77 | +echo "Publishing Ubuntu 18.04 Bionic" |
| 78 | +find "$SOURCE_DIR/ubuntu/bionic/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-ubuntu-bionic {} \; |
| 79 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-ubuntu-bionic-${VERSION}" from repo flb-ubuntu-bionic |
| 80 | +aptly -config="$APTLY_CONFIG" publish switch bionic filesystem:ubuntu/bionic: "fluent-bit-ubuntu-bionic-${VERSION}" |
| 81 | + |
| 82 | +# Ubuntu 20.04 Focal |
| 83 | +echo "Publishing Ubuntu 20.04 Focal" |
| 84 | +find "$SOURCE_DIR/ubuntu/focal/" -iname "*-bit_$VERSION*.deb" -exec aptly -config="$APTLY_CONFIG" repo add flb-ubuntu-focal {} \; |
| 85 | +aptly -config="$APTLY_CONFIG" snapshot create "fluent-bit-ubuntu-focal-${VERSION}" from repo flb-ubuntu-focal |
| 86 | +aptly -config="$APTLY_CONFIG" publish switch focal filesystem:ubuntu/focal: "fluent-bit-ubuntu-focal-${VERSION}" |
0 commit comments