diff options
author | Eric Nordlund <nrdlngr@gmail.com> | 2013-10-01 12:56:27 -0700 |
---|---|---|
committer | Eric Nordlund <nrdlngr@gmail.com> | 2013-10-01 12:56:27 -0700 |
commit | 8172d7725fbaaeec60e171096ad6f1853b2cbbe8 (patch) | |
tree | c9d6454b7c8489f921d814b5e9c0cda6f314e6ff /doc/examples | |
parent | adbc9e73376cc7ef70455197f57aa41104eba7d6 (diff) | |
download | vyos-cloud-init-8172d7725fbaaeec60e171096ad6f1853b2cbbe8.tar.gz vyos-cloud-init-8172d7725fbaaeec60e171096ad6f1853b2cbbe8.zip |
Fix typo in mkpasswd command: '-s' was used instead of '-R' for salt rounds.
Remove duplicate 'password' text.
Diffstat (limited to 'doc/examples')
-rwxr-xr-x[-rw-r--r--] | doc/examples/cloud-config-user-groups.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/cloud-config-user-groups.txt b/doc/examples/cloud-config-user-groups.txt index de5f321b..ad341005 100644..100755 --- a/doc/examples/cloud-config-user-groups.txt +++ b/doc/examples/cloud-config-user-groups.txt @@ -46,8 +46,8 @@ users: # inactive: Create the user as inactive # passwd: The hash -- not the password itself -- of the password you want # to use for this user. You can generate a safe hash via: -# mkpasswd -m SHA-512 -s 4096 -# (the above command would create a password SHA512 password hash +# mkpasswd -m SHA-512 -R 4096 +# (the above command would create from stdin an SHA-512 password hash # with 4096 salt rounds) # # Please note: while the use of a hashed password is better than |