mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-30 19:52:20 +01:00
(Bug) setup cannot chown installation folder
This commit is contained in:
parent
a31f3555a1
commit
cbefb702a5
@ -10,6 +10,7 @@
|
||||
- Fix a bug: trainings monitoring is not available
|
||||
- Fix a bug: invalid password length verification in profile edtion form
|
||||
- Fix a bug: invalid password verification in setup script
|
||||
- Fix a bug: during setup, unable to chown the installation folder, if the current user does not have a self-named group
|
||||
|
||||
## v5.4.15 2022 August 1
|
||||
|
||||
|
@ -198,7 +198,7 @@ prepare_files()
|
||||
if [[ "$confirm" = "n" ]]; then exit 1; fi
|
||||
|
||||
elevate_cmd mkdir -p "$FABMANAGER_PATH"
|
||||
elevate_cmd chown -R "$(whoami):$(whoami)" "$FABMANAGER_PATH"
|
||||
elevate_cmd chown -R "$(whoami)" "$FABMANAGER_PATH"
|
||||
|
||||
# create folders before starting the containers, otherwise root will own them
|
||||
local folders=(accounting config elasticsearch/config exports imports invoices log payment_schedules plugins postgresql \
|
||||
|
Loading…
x
Reference in New Issue
Block a user