2023-08-28 13:41:57 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
2023-08-28 14:17:35 +02:00
|
|
|
REPOS_EMPTY=0
|
2023-08-28 13:41:57 +02:00
|
|
|
|
|
|
|
# Give correct perms to Apt version checker
|
|
|
|
chmod 755 ./ppp
|
|
|
|
|
|
|
|
# Extranal XtraDEB 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 Wasta Cinnamon PPA pool
|
|
|
|
echo 'deb [arch=amd64 trusted=yes] https://ppa.launchpadcontent.net/wasta-linux/cinnamon-testing/ubuntu jammy main' | sudo tee /etc/apt/sources.list.d/external.list
|
|
|
|
apt update -y --allow-unauthenticated
|
|
|
|
|
|
|
|
WASTA_PPP=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/wasta-linux/cinnamon-testing/ubuntu/dists/jammy/main/binary-amd64/Packages.xz | tr ' ' '\n' | grep -E 'mintinstall|warpinator|webapp-manager|mint-common|mint-translations' | tr '\n' ' ')
|
|
|
|
|
|
|
|
if [ ! -z "$WASTA_PPP" ]
|
|
|
|
then
|
2023-08-28 15:00:29 +02:00
|
|
|
apt download $WASTA_PPP -y --target-release 'o=LP-PPA-wasta-linux-cinnamon-testing'
|
2023-08-28 13:41:57 +02:00
|
|
|
else
|
|
|
|
echo "Wasta Repos are synced"
|
2023-08-28 14:17:35 +02:00
|
|
|
export REPOS_EMPTY=1
|
2023-08-28 13:41:57 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf /etc/apt/sources.list.d/external.list
|
|
|
|
|
|
|
|
# Get Extranal Papirus PPA pool
|
|
|
|
echo 'deb [arch=amd64 trusted=yes] https://ppa.launchpadcontent.net/papirus/papirus/ubuntu lunar main' | sudo tee /etc/apt/sources.list.d/external.list
|
|
|
|
apt update -y --allow-unauthenticated
|
|
|
|
|
|
|
|
PAPIRUS_PPP=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/papirus/papirus/ubuntu/dists/lunar/main/binary-amd64/Packages.xz)
|
|
|
|
if [ ! -z "$PAPIRUS_PPP" ]
|
|
|
|
then
|
2023-08-28 15:00:29 +02:00
|
|
|
apt download $PAPIRUS_PPP -y --target-release 'o=LP-PPA-papirus-papirus'
|
2023-08-28 13:41:57 +02:00
|
|
|
else
|
|
|
|
echo "Papirus Repos are synced"
|
2023-08-28 14:17:35 +02:00
|
|
|
if [[ $REPOS_EMPTY == 1 ]]
|
2023-08-28 13:41:57 +02:00
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Return to Extranal MIRROR
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
find . -name \*.deb -exec cp -vf {} ./output \;
|
|
|
|
|
2023-09-06 20:13:45 +02:00
|
|
|
# send debs to server
|
|
|
|
rsync -azP ./output/ ferreo@direct.pika-os.com:/srv/www/incoming/
|
2023-08-28 13:41:57 +02:00
|
|
|
|
2023-09-06 20:13:45 +02:00
|
|
|
# add debs to repo
|
|
|
|
ssh ferreo@direct.pika-os.com 'aptly repo add -force-replace -remove-files pika-external /srv/www/incoming/'
|
2023-08-28 13:41:57 +02:00
|
|
|
|
2023-09-06 20:13:45 +02:00
|
|
|
# publish the repo
|
|
|
|
ssh ferreo@direct.pika-os.com 'aptly publish update -batch -skip-contents -force-overwrite lunar filesystem:pikarepo:'
|