2023-08-28 13:41:57 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Give correct perms to Apt version checker
|
|
|
|
chmod 755 ./ppp
|
|
|
|
|
2023-09-18 17:06:28 +02:00
|
|
|
# Extranal XtraDEB PPA MIRROR
|
|
|
|
mkdir -p ./manticoutput
|
|
|
|
cd ./manticoutput
|
|
|
|
|
|
|
|
../ppp https://ppa.pika-os.com/dists/mantic/external/binary-amd64/Packages https://ppa.launchpadcontent.net/wasta-linux/cinnamon-testing/ubuntu/dists/jammy/main/binary-amd64/Packages.xz https://ppa.launchpadcontent.net/wasta-linux/cinnamon-testing/ubuntu/ ./ "mintinstall,warpinator,webapp-manager,mint-common,mint-translations"
|
|
|
|
|
2023-09-28 17:51:18 +02:00
|
|
|
../ppp https://ppa.pika-os.com/dists/mantic/external/binary-amd64/Packages https://ppa.launchpadcontent.net/papirus/papirus/ubuntu/dists/mantic/main/binary-amd64/Packages.xz https://ppa.launchpadcontent.net/papirus/papirus/ubuntu/ ./
|
2023-09-18 17:06:28 +02:00
|
|
|
|
|
|
|
cd ../
|
|
|
|
|
2023-09-19 10:27:11 +02:00
|
|
|
if [ $(ls ./manticoutput/ | wc -l) -lt 1 ]; then
|
2023-09-18 17:06:28 +02:00
|
|
|
echo "Mantic repos are synced"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# send debs to server
|
|
|
|
rsync -azP ./manticoutput/ 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-mantic /srv/www/incoming/'
|
|
|
|
|
|
|
|
# publish the repo
|
2023-09-25 12:53:32 +02:00
|
|
|
ssh ferreo@direct.pika-os.com 'aptly publish update -batch -skip-contents -force-overwrite mantic filesystem:pikarepo:'
|