Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
liu-puppet-modules
aes
Commits
be8d1b19
Commit
be8d1b19
authored
3 years ago
by
Klas Arvidsson
Browse files
Options
Downloads
Patches
Plain Diff
Added system user for autocorrect scripts
parent
3d21a2e0
No related branches found
Branches containing commit
No related tags found
2 merge requests
!30
Merge branch 'cherry-pick-b940cfc1' into 'test'
,
!18
Devel
Pipeline
#62634
passed
3 years ago
Stage: puppet
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
manifests/autocorr.pp
+28
-0
28 additions, 0 deletions
manifests/autocorr.pp
manifests/init.pp
+1
-0
1 addition, 0 deletions
manifests/init.pp
with
29 additions
and
0 deletions
manifests/autocorr.pp
0 → 100644
+
28
−
0
View file @
be8d1b19
class
aes::autocorr
{
$autocorr_user
=
autocorr
$autocorr_group
=
$autocorr_user
$autocorr_home
=
"/home/
${autocorr_user}
"
user
{
'autocorr'
:
ensure
=>
present
,
managehome
=>
false
,
membership
=>
inclusive
,
system
=>
true
,
shell
=>
'/sbin/nologin'
,
}
file
{
$autocorr_home
:
ensure
=>
directory
,
mode
=>
'0755'
,
owner
=>
$autocorr_user
,
group
=>
$autocorr_group
,
}
file
{
"
${autocorr_home}
/.ssh"
:
ensure
=>
directory
,
mode
=>
'0700'
,
owner
=>
$autocorr_user
,
group
=>
$autocorr_group
,
}
}
This diff is collapsed.
Click to expand it.
manifests/init.pp
+
1
−
0
View file @
be8d1b19
...
@@ -8,6 +8,7 @@ class aes {
...
@@ -8,6 +8,7 @@ class aes {
include
aes::broker
include
aes::broker
include
aes::auth
include
aes::auth
include
aes::auth_keydb
include
aes::auth_keydb
include
aes::autocorr
include
liurepo::centos_sclo_rh
include
liurepo::centos_sclo_rh
package
{
package
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment