-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Ansible and Vagrant for Debian 12 #279
base: master
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ | |
changed_when: false | ||
|
||
- name: ensure service user {{user}} exists | ||
user: name={{user}} system=yes createhome=no home=/nonexistent | ||
user: name={{user}} system=yes createhome=yes home=/home/{{user}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This user does actually have to exist, as |
||
shell=/usr/sbin/nologin | ||
become: true | ||
when: id_user|failed | ||
when: id_user.rc != 0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the style suggested by the Ansible docs, although #218 suggests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vnc4server
has a proprietary license so I switched over totigervnc
which is in the main repositories.