Merge pull request #773 from archlinux/torxed-fix-examples
Updated examples - fixes #772
This commit is contained in:
commit
7fd26817a1
|
|
@ -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>"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"!root-password": "<root password>",
|
||||||
|
"!users": {
|
||||||
|
"username": {"!password": "<user password>"}
|
||||||
|
},
|
||||||
|
"!superusers": {
|
||||||
|
"admin": {"!password": "<admin password>"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue