Compare commits
No commits in common. "f4cb7cc76d0fa7fb8e67c799cffee3e68486a275" and "049136226e2d336efbb94c5b302f733bbc2effde" have entirely different histories.
f4cb7cc76d
...
049136226e
|
|
@ -53,7 +53,7 @@ must change the date of the snapshot in the `install.sh` script.
|
|||
| 3.0 Beowulf | 10.4 Buster | 2023-06-11T103552Z |
|
||||
| 4.0 Chimaera | 11.1 Bullseye | 2023-06-11T103552Z |
|
||||
| 5.0 Daedalus | 12 Bookworm | 2023-10-07T150030Z |
|
||||
| 6.0 Excalibur | 13 Trixie | 2026-02-02T081703Z |
|
||||
| 6.0 Excalibur | 13 Trixie | testing |
|
||||
| 7.0 Freia | 14 Forky | |
|
||||
| Ceres | Sid | unstable |
|
||||
|
||||
|
|
|
|||
|
|
@ -488,21 +488,31 @@ image_format_partitions_zfs() {
|
|||
|
||||
act "create the zfs boot pool"
|
||||
#zpool create -f -m none \
|
||||
zpool create -f \
|
||||
-o cachefile=${zpool_cache_dir}/zpool.cache \
|
||||
-o ashift=${ashift} \
|
||||
-o autotrim=on \
|
||||
-o compatibility=grub2 \
|
||||
-O acltype=posixacl \
|
||||
-O canmount=off \
|
||||
-O compression=lz4 \
|
||||
-O devices=off \
|
||||
-O normalization=formD \
|
||||
-O relatime=on \
|
||||
-O xattr=sa \
|
||||
-O mountpoint=legacy -o altroot=${strapdir} \
|
||||
-O recordsize=128K \
|
||||
${bpool_name} ${raid} /dev/disk/by-id/${disk_name}-part${boot_part_number} /dev/disk/by-id/${mirror_disk}-part${boot_part_number}
|
||||
zpool create -f \
|
||||
-o cachefile=${zpool_cache_dir}/zpool.cache \
|
||||
-o ashift=${ashift} -d \
|
||||
-o feature@async_destroy=enabled \
|
||||
-o feature@bookmarks=enabled \
|
||||
-o feature@embedded_data=enabled \
|
||||
-o feature@empty_bpobj=enabled \
|
||||
-o feature@enabled_txg=enabled \
|
||||
-o feature@extensible_dataset=enabled \
|
||||
-o feature@filesystem_limits=enabled \
|
||||
-o feature@hole_birth=enabled \
|
||||
-o feature@large_blocks=enabled \
|
||||
-o feature@lz4_compress=enabled \
|
||||
-o feature@spacemap_histogram=enabled \
|
||||
-o feature@zpool_checkpoint=enabled \
|
||||
-O acltype=posixacl \
|
||||
-O canmount=off \
|
||||
-O compression=lz4 \
|
||||
-O devices=off \
|
||||
-O normalization=formD \
|
||||
-O relatime=on \
|
||||
-O xattr=sa \
|
||||
-O mountpoint=legacy -o altroot=${strapdir} \
|
||||
${bpool_name} ${raid} /dev/disk/by-id/${disk_name}-part${boot_part_number} /dev/disk/by-id/${mirror_disk}-part${boot_part_number}
|
||||
|
||||
|
||||
act "create the zfs root pool"
|
||||
|
||||
|
|
@ -535,7 +545,6 @@ image_format_partitions_zfs() {
|
|||
notice "zfs system installation"
|
||||
act "create filesystem datasets to act as containers"
|
||||
zfs create -o canmount=off -o mountpoint=none ${rpool_name}/ROOT
|
||||
zfs create -o canmount=off -o mountpoint=none ${rpool_name}/DATA
|
||||
zfs create -o canmount=off -o mountpoint=none ${bpool_name}/BOOT
|
||||
|
||||
act "create filesystem datasets for the root and boot filesystems"
|
||||
|
|
@ -591,16 +600,11 @@ image_format_partitions_zfs() {
|
|||
-o com.sun:auto-snapshot=false \
|
||||
${rpool_name}/var/cache
|
||||
|
||||
# Split docker data from images
|
||||
zfs create \
|
||||
-o mountpoint=/var/lib/docker \
|
||||
-o com.sun:autosnapshot=false \
|
||||
${rpool_name}/docker
|
||||
|
||||
zfs create \
|
||||
-o mountpoint=/var/lib/docker/volumes \
|
||||
${rpool_name}/DATA/docker-volumes
|
||||
|
||||
zfs create -o mountpoint=/var/log ${rpool_name}/var/log
|
||||
zfs create -o mountpoint=/var/snap ${rpool_name}/var/snap
|
||||
zfs create -o mountpoint=/var/spool ${rpool_name}/var/spool
|
||||
|
|
|
|||
Loading…
Reference in New Issue