A Lua script to check the health of Devuan Linux package mirrors. The master repo is at https://sledjhamr.org/cgit/apt-panopticon/ and the master issues tracker is at https://sledjhamr.org/mantisbt/project_page.php?project_id=13
https://sledjhamr.org/cgit/apt-panopticon/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
533 B
16 lines
533 B
#!/bin/bash
|
|
|
|
cd /var/www/html/apt-panopticon/apt-panopticon_cgp
|
|
#git pull > /dev/null
|
|
#chown -R mirrors:www-data *
|
|
cd /var/www/html/apt-panopticon/apt-panopticon
|
|
#git pull > /dev/null
|
|
#chown -R mirrors:www-data *
|
|
|
|
if [ ! -f apt-panopticon.lock ] ; then
|
|
rm ../results; ln -s apt-panopticon/results_old ../results
|
|
flock -n apt-panopticon.lock ./apt-panopticon.lua && rm apt-panopticon.lock
|
|
rm ../results; ln -s apt-panopticon/results ../results
|
|
fi
|
|
|
|
#chown -R mirrors:www-data /var/www/html/SledjHamr/apt-panopticon/results
|
|
|