Merge pull request #773 from archlinux/torxed-fix-examples

Updated examples - fixes #772
This commit is contained in:
Anton Hvornum 2021-11-26 14:26:18 +00:00 committed by GitHub
commit 7fd26817a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 19 deletions

View File

@ -1,35 +1,29 @@
{ {
"!root-password": "<root_password>",
"audio": null, "audio": null,
"bootloader": "systemd-bootctl", "bootloader": "systemd-bootctl",
"filesystem": "btrfs", "harddrives": [
"harddrive": { "/dev/loop0"
"path": "/dev/sda" ],
}, "hostname": "",
"hostname": "box",
"kernels": [ "kernels": [
"linux" "linux"
], ],
"keyboard-language": "us", "keyboard-layout": "us",
"mirror-region": { "mirror-region": {
"Worldwide": { "Worldwide": {
"https://mirror.rackspace.com/archlinux/$repo/os/$arch": true "https://mirror.rackspace.com/archlinux/$repo/os/$arch": true
} }
}, },
"nic": { "nic": {
"NetworkManager": true "NetworkManager": true,
"nic": "Use NetworkManager (necessary to configure internet graphically in GNOME and KDE)"
}, },
"ntp": true,
"packages": [], "packages": [],
"profile": null, "profile": null,
"superusers": { "script": "guided",
"<username>": { "swap": true,
"!password": "<password>" "sys-encoding": "utf-8",
} "sys-language": "en_US",
}, "timezone": "UTC"
"timezone": "UTC",
"users": {
"<username>": {
"!password": "<password>"
}
}
} }

View File

@ -0,0 +1,9 @@
{
"!root-password": "<root password>",
"!users": {
"username": {"!password": "<user password>"}
},
"!superusers": {
"admin": {"!password": "<admin password>"}
}
}

View File

@ -0,0 +1,38 @@
{
"/dev/loop0": {
"partitions": [
{
"boot": true,
"encrypted": false,
"filesystem": {
"format": "fat32"
},
"format": true,
"mountpoint": "/boot",
"size": "513MB",
"start": "5MB",
"type": "primary"
},
{
"btrfs": {
"subvolumes": {
"@.snapshots": "/.snapshots",
"@home": "/home",
"@log": "/var/log",
"@pkgs": "/var/cache/pacman/pkg"
}
},
"encrypted": true,
"filesystem": {
"format": "btrfs"
},
"format": true,
"mountpoint": "/",
"size": "100%",
"start": "518MB",
"type": "primary"
}
],
"wipe": true
}
}