Created
September 20, 2020 20:43
-
-
Save steelcowboy/d1171c587db86f885a3edc203c30ec74 to your computer and use it in GitHub Desktop.
OpenSUSE MicroOS Ignition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ignition": { "version": "3.1.0" }, | |
"storage": { | |
"filesystems": [ | |
{ | |
"path": "/home", | |
"device": "/dev/disk/by-label/ROOT", | |
"format": "btrfs", | |
"wipeFilesystem": false, | |
"mountOptions": [ | |
"subvol=/@/home" | |
] | |
} | |
] | |
}, | |
"passwd": { | |
"users": [ | |
{ | |
"name": "root", | |
"passwordHash": [REDACTED] | |
}, | |
{ | |
"name": "steelcowboy", | |
"passwordHash": [REDACTED], | |
"groups": [ | |
"wheel" | |
], | |
"sshAuthorizedKeys": [ | |
[REDACTED] | |
] | |
} | |
], | |
"groups": [ | |
{ | |
"name": "wheel", | |
"system": true | |
} | |
] | |
}, | |
"systemd": { | |
"units": [ | |
{ | |
"name": "sshd.service", | |
"enabled": true | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment