Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gga_load_data
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
abims
e-infra
gga_load_data
Merge requests
!4
Fix authelia_users.yml file name
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix authelia_users.yml file name
dev
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Loraine Gueguen
requested to merge
dev
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4f4dee21
1 commit,
3 years ago
1 file
+
1
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
gga_init.py
+
1
−
1
Options
@@ -231,7 +231,7 @@ def make_traefik_compose_files(config, main_dir):
@@ -231,7 +231,7 @@ def make_traefik_compose_files(config, main_dir):
sys
.
exit
()
sys
.
exit
()
# Path to the authelia users in the repo
# Path to the authelia users in the repo
authelia_users_path
=
script_dir
+
"
/files/authelia_users
_template
.yml
"
authelia_users_path
=
script_dir
+
"
/files/authelia_users.yml
"
# Copy authelia "users" file
# Copy authelia "users" file
if
not
os
.
path
.
isfile
(
"
./traefik/authelia/users.yml
"
):
if
not
os
.
path
.
isfile
(
"
./traefik/authelia/users.yml
"
):
shutil
.
copy
(
authelia_users_path
,
"
./traefik/authelia/users.yml
"
)
shutil
.
copy
(
authelia_users_path
,
"
./traefik/authelia/users.yml
"
)
Loading