diff options
author | James Falcon <therealfalcon@gmail.com> | 2021-09-24 15:22:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 14:22:57 -0600 |
commit | 8cebc449812b4bff4afaa0837b140030c419f98e (patch) | |
tree | 0851fff4b7a001b36c90f6c871633c00b7a4cb20 /doc/examples/cloud-config-user-groups.txt | |
parent | 244af3f4971c8f89c741aa90306f0fb1b4459940 (diff) | |
download | vyos-cloud-init-8cebc449812b4bff4afaa0837b140030c419f98e.tar.gz vyos-cloud-init-8cebc449812b4bff4afaa0837b140030c419f98e.zip |
Remove invalid ssh_import_id from examples (#1031)
Diffstat (limited to 'doc/examples/cloud-config-user-groups.txt')
-rw-r--r-- | doc/examples/cloud-config-user-groups.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/examples/cloud-config-user-groups.txt b/doc/examples/cloud-config-user-groups.txt index 1faecf75..30cd3f97 100644 --- a/doc/examples/cloud-config-user-groups.txt +++ b/doc/examples/cloud-config-user-groups.txt @@ -20,14 +20,18 @@ users: groups: users selinux_user: staff_u expiredate: '2032-09-01' - ssh_import_id: foobar + ssh_import_id: + - lp:falcojr + - gh:TheRealFalcon lock_passwd: false passwd: $6$j212wezy$7H/1LT4f9/N3wpgNunhsIqtMj62OKiS3nyNwuizouQc3u7MbYCarYeAHWYPYb2FT.lbioDm2RrkJPb9BZMN1O/ - name: barfoo gecos: Bar B. Foo sudo: ALL=(ALL) NOPASSWD:ALL groups: users, admin - ssh_import_id: None + ssh_import_id: + - lp:falcojr + - gh:TheRealFalcon lock_passwd: true ssh_authorized_keys: - <ssh pub key 1> |