46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#! /bin/bash
|
|
set -e
|
|
|
|
# Give correct perms to Apt version checker
|
|
chmod 755 ./ppp
|
|
|
|
# Extranal System76 PPA MIRROR
|
|
mkdir -p ./output/external
|
|
cd ./output/external
|
|
|
|
# temp
|
|
apt update
|
|
apt upgrade -y
|
|
# end of temp
|
|
|
|
#Get rid of Pika sources to prevent conflicts
|
|
rm -rf /etc/apt/sources.list.d/pika*
|
|
rm -rf /etc/apt/preferences.d/*pika*
|
|
|
|
# Get Extranal System76 PPA pool
|
|
echo 'deb [arch=amd64 trusted=yes] https://ppa.launchpadcontent.net/system76-dev/pre-stable/ubuntu lunar main' | sudo tee /etc/apt/sources.list.d/external.list
|
|
apt update -y --allow-unauthenticated
|
|
|
|
PPP=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/system76-dev/pre-stable/ubuntu/dists/lunar/main/binary-amd64/Packages.xz)
|
|
if [ ! -z "$PPP" ]
|
|
then
|
|
apt download $PPP -y --target-release 'o=LP-PPA-system76-dev-pre-stable'
|
|
else
|
|
echo "Repos are synced"
|
|
exit 0
|
|
fi
|
|
|
|
# Return to Extranal System76 PPA MIRROR
|
|
cd ../
|
|
mkdir -p ./output
|
|
find . -name \*.deb -exec cp -vf {} ./output \;
|
|
|
|
# send debs to server
|
|
rsync -azP ./output/ ferreo@direct.pika-os.com:/srv/www/incoming/
|
|
|
|
# add debs to repo
|
|
ssh ferreo@direct.pika-os.com 'aptly repo add -force-replace -remove-files pika-external /srv/www/incoming/'
|
|
|
|
# publish the repo
|
|
ssh ferreo@direct.pika-os.com 'aptly publish update -batch -skip-contents -force-overwrite lunar filesystem:pikarepo:'
|