'name' is a reserved keyword, replace it by 'user' in manifest and install

This commit is contained in:
Boudewijn 2025-03-02 22:29:38 +01:00
parent adb5d3b94c
commit 4cb061c021
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ ram.runtime = "100M"
default = "all_users"
# for now no credentials configured, make it install first
[install.name]
[install.user]
help.en = "The name of the user"
type = "text"
[install.email]

View file

@ -100,7 +100,7 @@ pushd "$install_dir"
"php$php_version" artisan migrate:fresh --seed -n --force
"php$php_version" artisan config:clear -n
"php$php_version" artisan config:cache -n
"php$php_version" artisan app:create-user "$name" "$email" "$password"
"php$php_version" artisan app:create-user "$user" "$email" "$password"
popd