index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2022-05-27 05:48:29 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 21:48:29 +0200 |
commit | 870da403e79ab50350803b45f200e0b272334989 (patch) | |
tree | 9b203a054bd10cbc73a81b4fd5fe24ef8e6f141a /examples/creds-sample.json | |
parent | 353c05318ce80b8eec32031c9e14b8471b458548 (diff) |
-rw-r--r-- | examples/creds-sample.json | 20 |
diff --git a/examples/creds-sample.json b/examples/creds-sample.json index 16aeb8cc..0681e16f 100644 --- a/examples/creds-sample.json +++ b/examples/creds-sample.json @@ -1,9 +1,15 @@ { "!root-password": "<root password>", - "!users": { - "username": {"!password": "<user password>"} - }, - "!superusers": { - "admin": {"!password": "<admin password>"} - } -}
\ No newline at end of file + "!users": [ + { + "username": "<USERNAME>", + "!password": "<PASSWORD>", + "sudo": false + }, + { + "username": "<SUDO_USERNAME>", + "!password": "<PASSWORD>", + "sudo": true + } + ] +} |