hosts: btrbk fix subvol definition

This commit is contained in:
Kabbone 2023-01-14 21:15:26 +01:00
parent cfda3ee228
commit 01524a71c3
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY

View File

@ -63,8 +63,10 @@
volume = { volume = {
"/mnt/snapshots/root" = { "/mnt/snapshots/root" = {
snapshot_create = "always"; snapshot_create = "always";
subvolume = "@home"; subvolume = {
subvolume = "@nas"; "@home" = {};
"@nas" = {};
};
}; };
}; };
}; };
@ -83,13 +85,15 @@
volume = { volume = {
"/mnt/snapshots/Pluto" = { "/mnt/snapshots/Pluto" = {
snapshot_create = "always"; snapshot_create = "always";
subvolume = "@"; subvolume = {
subvolume = "@/Backups"; "@" = {};
subvolume = "@/Games"; "@/Backups" = {};
subvolume = "@/IT"; "@/Games" = {};
subvolume = "@/Media"; "@/IT" = {};
subvolume = "@/Pictures"; "@/Media" = {};
subvolume = "@/Rest"; "@/Pictures" = {};
"@/Rest" = {};
};
}; };
}; };
}; };