We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d20df commit 6f62e06Copy full SHA for 6f62e06
2 files changed
ansible/bootstrap
@@ -3,7 +3,7 @@
3
# Basic list of commands needed to get this ansible formula running on a server.
4
#
5
# Unsafe Usage:
6
-# curl -s https://raw.githubusercontent.com/recoverysource/services/refs/heads/release/ansible/bootstrap | bash
+# wget https://raw.githubusercontent.com/recoverysource/services/refs/heads/release/ansible/bootstrap; bash bootstrap
7
##
8
set -e
9
ansible/roles/common/templates/access.conf
@@ -35,8 +35,9 @@
35
+:root:ALL
36
37
# Allow device owner to do things
38
-{%- for username in common_users.keys() %}
39
-+:{{ username }}:ALL{% endfor %}
+{% for username in common_users.keys() -%}
++:{{ username }}:ALL
40
+{% endfor %}
41
42
# Disallow console logins to all but a few accounts.
43
-:ALL EXCEPT wheel shutdown sync:LOCAL
0 commit comments