2023-08-24 22:40:11 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Give correct perms to Apt version checker
|
|
|
|
chmod 755 ./ppp
|
|
|
|
|
|
|
|
# Extranal Steam 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 Steam pool
|
|
|
|
echo 'deb [trusted=yes] https://repo.steampowered.com/steam/ stable steam' | sudo tee /etc/apt/sources.list.d/external.list
|
|
|
|
|
|
|
|
PPP32=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-i386/Packages https://repo.steampowered.com/steam/dists/stable/steam/binary-i386/Packages)
|
|
|
|
if [ ! -z "$PPP32" ]
|
|
|
|
then
|
2023-08-24 22:45:47 +02:00
|
|
|
dpkg --add-architecture i386
|
|
|
|
apt update -o APT::Architecture="i386" -o APT::Architectures="i386" -y --allow-unauthenticated
|
2023-08-28 15:00:29 +02:00
|
|
|
apt download $PPP32 -o APT::Architecture="i386" -o APT::Architectures="i386" -y --target-release 'o=Valve Software LLC'
|
2023-08-24 22:47:33 +02:00
|
|
|
rm -rfv ./*all.deb
|
2023-08-24 22:40:11 +02:00
|
|
|
else
|
|
|
|
echo "i386 Repos are synced"
|
|
|
|
fi
|
|
|
|
|
|
|
|
PPP64=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://repo.steampowered.com/steam/dists/stable/steam/binary-amd64/Packages)
|
|
|
|
if [ ! -z "$PPP64" ]
|
|
|
|
then
|
2023-08-24 22:45:47 +02:00
|
|
|
apt update -o APT::Architecture="amd64" -o APT::Architectures="amd64" -y --allow-unauthenticated
|
2023-08-28 15:00:29 +02:00
|
|
|
apt download $PPP64 -o APT::Architecture="amd64" -o APT::Architectures="amd64" -y --target-release 'o=Valve Software LLC'
|
2023-08-24 22:40:11 +02:00
|
|
|
else
|
|
|
|
echo "AMD64 Repos are synced"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Return to Extranal Steam 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-24 22:40:11 +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-24 22:40:11 +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:'
|