update 14/04/2025
This commit is contained in:
parent
ffb7217f7f
commit
0026da2286
56 changed files with 135 additions and 117 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION=4.38.18
|
||||
VERSION=4.39.1
|
||||
APP=authelia
|
||||
DEPOT=https://github.com/authelia/authelia.git
|
||||
GIT_VERSION=v${VERSION}
|
||||
|
@ -12,13 +12,13 @@ PACKAGE_DEPENDENCY="build-essential nodejs"
|
|||
main(){
|
||||
base_package_upgrade
|
||||
envinit
|
||||
get_git_source
|
||||
get_git_source noremovegit
|
||||
build
|
||||
makedeb
|
||||
}
|
||||
|
||||
envinit() {
|
||||
configure_depot_nodejs
|
||||
configure_depot_nodejs 22
|
||||
install_package_dependency
|
||||
install_go
|
||||
wget -qO - https://get.pnpm.io/install.sh | sh -
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
id authelia &> /dev/null || useradd authelia -r -s /bin/false
|
||||
APP=authelia
|
||||
id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/
|
||||
chown -R $APP:$APP /var/lib/$APP/
|
||||
|
||||
systemctl | grep authelia | grep -q running && systemctl daemon-reload && systemctl restart authelia
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue