Compare commits
2 Commits
a1499ce26d
...
ecef3c0c26
Author | SHA1 | Date | |
---|---|---|---|
ecef3c0c26 | |||
c87904b996 |
@ -1,3 +1,8 @@
|
|||||||
# gitea-customizations
|
# Gitea Customizations
|
||||||
|
|
||||||
Customizations de git.labolyon.fr
|
Ensemble de customizations pour le gitea du LOL
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Pour installer les customizations, lancez simplement le script `./install.sh`.
|
||||||
|
Il s'occupera de copier les fichiers dans `GITEA_CUSTOM`.
|
@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
if [ "$GITEA_CUSTOM" == "" ]; then
|
if [ "$GITEA_CUSTOM" == "" ]; then
|
||||||
GITEA_CUSTOM="/var/lib/gitea/custom"
|
GITEA_CUSTOM="/var/lib/gitea/custom"
|
||||||
fi
|
fi
|
||||||
@ -14,4 +17,6 @@ case "$confirm" in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
mkdir -p "$GITEA_CUSTOM"
|
mkdir -p "$GITEA_CUSTOM"
|
||||||
cp -r -v -f ./custom/* "$GITEA_CUSTOM/"
|
cp -r -v -f ./custom/* "$GITEA_CUSTOM/"
|
||||||
|
|
||||||
|
systemctl restart gitea
|
Loading…
Reference in New Issue
Block a user