Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/user/reference/autoyast.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ This section is supported. Only the root and the first user are considered.
| `fullName` | yes | `user.fullName` | |
| `password` | yes | `user.password` | |
| `encrypted` | yes | `user.hashedPassword` | If set to true, it uses "hashedPassword" instead of "password" |
| `authorized_keys` | yes | `root.sshPublicKey` | It only considers a single key. |
| `authorized_keys` | yes | `root.sshPublicKey` | |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line is auto-generated from https://github.com/agama-project/agama/blob/master/service/share/autoyast-compat.json#L673. You can keep this change but, please, update the other file too.


## Unsupported sections

Expand Down
5 changes: 4 additions & 1 deletion docs/user/reference/profile/users.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ The following fields are supported:

- `password`: `root` password, hashed or not depending on `hashedPassword`.
- `hashedPassword`: whether the `password` is hashed (`true`) or not (`false` or undefined).
- `sshPublicKey`: SSH public key to be copied to the `/root/.ssh/authorized_keys` file.
- `sshPublicKey`: SSH public key to be copied to the `/root/.ssh/authorized_keys` file. It can be single string or array of strings (keys).
- `sshPublicKeys`: an alias for `sshPublicKey`, the behavior is exactly the same.

## First user

Expand All @@ -55,6 +56,8 @@ This section includes the following fields:
- `fullName`: user's full name.
- `password`: `root` password, hashed or not depending on `hashedPassword`.
- `hashedPassword`: whether the `password` is hashed (`true`) or not (`false` or undefined).
- `sshPublicKey`: SSH public key to be copied to the `/home/<userName>/.ssh/authorized_keys` file. It can be single string or array of strings (keys).
- `sshPublicKeys`: an alias for `sshPublicKey`, the behavior is exactly the same.

## Encrypted passwords

Expand Down
Loading