don't lock out by default

local
Glenn K. Lockwood 7 years ago
parent 472c8ee38f
commit 5981af269c
  1. 14
      roles/common/tasks/main.yml

@ -84,6 +84,7 @@
groups="{{ item.groups }}"
uid="{{ item.uid }}"
state=present
shell=/bin/bash
with_items: "{{ create_users }}"
tags: [ 'users' ]
@ -95,8 +96,11 @@
tags: [ 'users' ]
### disable the 'pi' user's ability to login in with password
- name: disable 'pi' user
user: name="pi"
password="*"
state=present
tags: [ 'users' ]
### if you enable this, you may lock yourself out--you must make sure another
### user has been added with both sudo privileges and a password by which
### sudo can be authenticated
#- name: disable 'pi' user
# user: name="pi"
# password="*"
# state=present
# tags: [ 'users' ]

Loading…
Cancel
Save