29 lines
1021 B
Bash
29 lines
1021 B
Bash
#! /bin/bash
|
|
set -e
|
|
|
|
# Give correct perms to Apt version checker
|
|
chmod 755 ./ppp
|
|
|
|
# Extranal WineHQ MIRROR
|
|
mkdir -p ./manticoutput
|
|
cd ./manticoutput
|
|
|
|
../ppp https://ppa.pika-os.com/dists/lunar/external/binary-i386/Packages https://dl.winehq.org/wine-builds/ubuntu/dists/lunar/main/binary-i386/Packages.xz https://dl.winehq.org/wine-builds/ubuntu/ ./
|
|
../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://dl.winehq.org/wine-builds/ubuntu/dists/lunar/main/binary-amd64/Packages.xz https://dl.winehq.org/wine-builds/ubuntu/ ./
|
|
|
|
cd ../
|
|
|
|
if [ $(ls ./manticoutput/ | wc -l) -lt 1 ]; then
|
|
echo "Lunar 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 /srv/www/incoming/'
|
|
|
|
# publish the repo
|
|
ssh ferreo@direct.pika-os.com 'aptly publish update -batch -skip-contents -force-overwrite lunar filesystem:pikarepo:'
|