#! /bin/bash set -e # Give correct perms to Apt version checker chmod 755 ./ppp # output folders mkdir -p ./output/output cd ./output/output # temp apt update apt upgrade -y # end of temp apt install dpkg-sig wget rsync ssh reprepro -y # Get ubuntu main pool echo "Getting ubuntu main pool 32bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-i386/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/main/binary-i386/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ echo "Getting ubuntu main pool 64bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-amd64/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/main/binary-amd64/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ # Get ubuntu multiverse pool echo "Getting ubuntu multiverse pool 32bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-i386/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/multiverse/binary-i386/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ echo "Getting ubuntu multiverse pool 64bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-amd64/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/multiverse/binary-amd64/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ # Get ubuntu restricted pool echo "Getting ubuntu restricted pool 32bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-i386/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/restricted/binary-i386/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ echo "Getting ubuntu restricted pool 64bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-amd64/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/restricted/binary-amd64/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ # Get ubuntu universe pool echo "Getting ubuntu universe pool 32bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-i386/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/universe/binary-i386/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ echo "Getting ubuntu universe pool 64bit" ../../ppp https://ppa.pika-os.com/dists/lunar/ubuntu/binary-amd64/Packages.gz http://archive.ubuntu.com/ubuntu/dists/lunar-security/universe/binary-amd64/Packages.xz http://archive.ubuntu.com/ubuntu/ ./ cd ../ if [ $(ls ./output/ | wc -l) -lt 1 ]; then echo "Repos are synced" exit 0 fi # Sign the packages ../ppp sign ./output/ # Pull down existing ppa repo db files etc rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo # Check if the ubuntu component exists if cat ./output/repo/conf/distributions | grep Components: | grep ubuntu then true else sed -i "s#Components:#Components: ubuntu#" ./output/repo/conf/distributions fi # Add the new packages to the repo ../ppp repoadd ./output/ "--keepunusednewfiles --keepunreferencedfiles -C ubuntu -V --ignore=missingfield --basedir ./output/repo/ includedeb lunar" # Push the updated ppa repo to the server rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/