Add mirror script
Use cron to run script at a regular interval
This commit is contained in:
parent
c9d05b96a6
commit
f667ed7aa3
48
haikumirror.sh
Normal file
48
haikumirror.sh
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
#/bin/bash
|
||||||
|
# Change the following values to configure your mirror
|
||||||
|
|
||||||
|
# Path to the Hugo binary
|
||||||
|
HUGO_PATH="/path/to/hugo"
|
||||||
|
# The mirror website title
|
||||||
|
MIRROR_TITLE="Haiku Project (Yann64's Mirror)"
|
||||||
|
# The mirror base URL (must end with a slash '/')
|
||||||
|
MIRROR_BASEURL="https://barbel.synology.me/haiku/"
|
||||||
|
# Server base directory
|
||||||
|
MIRROR_ROOTPATH="/opt/http"
|
||||||
|
# Full path for Haiku site mirror
|
||||||
|
MIRROR_LOCALPATH="/opt/http/haiku"
|
||||||
|
|
||||||
|
# Update main site to latest version
|
||||||
|
echo "==> Clone website from the official repository :"
|
||||||
|
git clone https://github.com/haiku/website.git
|
||||||
|
cd website
|
||||||
|
|
||||||
|
sed -i "s/title = \"Haiku Project\"/title = \"$MIRROR_TITLE\"/" ./config.toml
|
||||||
|
sed -i "s@baseURL = \"https://www.haiku-os.org/\"@baseURL = \"$MIRROR_BASEURL\"@" ./config.toml
|
||||||
|
|
||||||
|
# Uncomment following lines if you want to change tickets source information
|
||||||
|
#sed -i "s@'https://cgit.haiku-os.org/haiku/commit/?id='@'https://git.barbel.synology.me/Haiku/haiku/commit/'@" ./static/js/activity.js
|
||||||
|
#sed -i "s@https://cgit.haiku-os.org/haiku/log/@https://git.barbel.synology.me/Haiku/haiku/commits/branch/master@ " ./themes/shijin4/layouts/partials/home.html
|
||||||
|
|
||||||
|
echo "==> Site generation using Hugo :"
|
||||||
|
$HUGO_PATH
|
||||||
|
echo "==> Copy files to destination forlder: "$MIRROR_LOCALPATH
|
||||||
|
cd public
|
||||||
|
cp -r * $MIRROR_LOCALPATH
|
||||||
|
cp -r ./images $MIRROR_ROOTPATH
|
||||||
|
|
||||||
|
echo "==> Cleaning"
|
||||||
|
cd ../..
|
||||||
|
rm -rf ./website
|
||||||
|
|
||||||
|
# Update userguide to latest version
|
||||||
|
echo "==> Clone userguide from the official repository :"
|
||||||
|
git clone "https://review.haiku-os.org/userguide"
|
||||||
|
cd userguide
|
||||||
|
echo "==> Copy files to destination forlder: $MIRROR_LOCALPATH/docs"
|
||||||
|
cp -r * "$MIRROR_LOCALPATH/docs"
|
||||||
|
echo "==> Cleaning"
|
||||||
|
cd ..
|
||||||
|
rm -rf ./userguide
|
||||||
|
|
||||||
|
echo "Done !"
|
Loading…
Reference in New Issue
Block a user