Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
servers-config
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Sistemisti
servers-config
Commits
adff2c60
Commit
adff2c60
authored
Mar 02, 2018
by
Mattia Rizzolo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
common/users: default state for ssh keys is 'present'
Signed-off-by:
Mattia Rizzolo
<
mattia@debian.org
>
parent
f6aaf735
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
roles/common/tasks/users.yml
roles/common/tasks/users.yml
+2
-2
No files found.
roles/common/tasks/users.yml
View file @
adff2c60
...
...
@@ -47,7 +47,7 @@
user
:
"
{{
item.0.name
}}"
key
:
"
{{
item.1.key
}}"
comment
:
"
{{
item.1.comment
|
default(None)
}}"
state
:
"
{{
item.1.state
}}"
state
:
"
{{
item.1.state
|
default('present')
}}"
path
:
/etc/ssh/authorized_keys/{{ item.0.name }}
manage_dir
:
no
with_subelements
:
...
...
@@ -59,7 +59,7 @@
user
:
manager
key
:
"
{{
item.1.key
}}"
comment
:
"
{{
item.1.comment
|
default(None)
}}"
state
:
"
{{
item.1.state
}}"
state
:
"
{{
item.1.state
|
default('present')
}}"
path
:
/etc/ssh/authorized_keys/manager
manage_dir
:
no
with_subelements
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment