Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webservices
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
infra
ansible-shared
webservices
Merge requests
!7
php-fpm: Allow specifying additional groups for the user
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
php-fpm: Allow specifying additional groups for the user
th/php-fpm-groups
into
master
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
php-fpm: Allow specifying additional groups for the user
Thomas Schneider
requested to merge
th/php-fpm-groups
into
master
Jan 15, 2021
Overview
2
Commits
1
Pipelines
1
Changes
1
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
dfcef293
1 commit,
Jan 15, 2021
1 file
+
3
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
php-fpm/tasks/main.yml
+
3
−
0
View file @ dfcef293
Edit in single-file editor
Open in Web IDE
Show full file
@@ -31,12 +31,15 @@
@@ -31,12 +31,15 @@
user
:
user
:
name
:
"
{{
item.name
}}"
name
:
"
{{
item.name
}}"
group
:
"
{{
item.name
}}"
group
:
"
{{
item.name
}}"
groups
:
"
{{
item.groups|default([])
}}"
system
:
true
system
:
true
home
:
"
{{
item.home|default('/var/www/'
~
item.name)
}}"
home
:
"
{{
item.home|default('/var/www/'
~
item.name)
}}"
shell
:
/usr/bin/nologin
shell
:
/usr/bin/nologin
createhome
:
false
createhome
:
false
state
:
present
state
:
present
with_items
:
"
{{
fpm_pools|default([])
}}"
with_items
:
"
{{
fpm_pools|default([])
}}"
notify
:
-
restart php-fpm
-
name
:
ensure we have all the pools we want
-
name
:
ensure we have all the pools we want
template
:
template
:
Loading