tv: mute random new filesystem option deprecation warning

This commit is contained in:
tv 2016-02-27 15:39:53 +01:00
parent 766cd8cbf0
commit ad9d704ac3
2 changed files with 6 additions and 6 deletions

View File

@ -127,12 +127,12 @@ with config.krebs.lib;
"/" = { "/" = {
device = "/dev/mapper/vg840-wuroot"; device = "/dev/mapper/vg840-wuroot";
fsType = "btrfs"; fsType = "btrfs";
options = "defaults,noatime,ssd,compress=lzo"; options = ["defaults" "noatime" "ssd" "compress=lzo"];
}; };
"/home" = { "/home" = {
device = "/dev/mapper/home"; device = "/dev/mapper/home";
fsType = "btrfs"; fsType = "btrfs";
options = "defaults,noatime,ssd,compress=lzo"; options = ["defaults" "noatime" "ssd" "compress=lzo"];
}; };
"/boot" = { "/boot" = {
device = "/dev/sda1"; device = "/dev/sda1";
@ -140,7 +140,7 @@ with config.krebs.lib;
"/tmp" = { "/tmp" = {
device = "tmpfs"; device = "tmpfs";
fsType = "tmpfs"; fsType = "tmpfs";
options = "nosuid,nodev,noatime"; options = ["nosuid" "nodev" "noatime"];
}; };
}; };

View File

@ -138,12 +138,12 @@ with config.krebs.lib;
"/" = { "/" = {
device = "/dev/mapper/xuvga-root"; device = "/dev/mapper/xuvga-root";
fsType = "btrfs"; fsType = "btrfs";
options = "defaults,noatime,ssd,compress=lzo"; options = ["defaults" "noatime" "ssd" "compress=lzo"];
}; };
"/home" = { "/home" = {
device = "/dev/mapper/xuvga-home"; device = "/dev/mapper/xuvga-home";
fsType = "btrfs"; fsType = "btrfs";
options = "defaults,noatime,ssd,compress=lzo"; options = ["defaults" "noatime" "ssd" "compress=lzo"];
}; };
"/boot" = { "/boot" = {
device = "/dev/sda1"; device = "/dev/sda1";
@ -151,7 +151,7 @@ with config.krebs.lib;
"/tmp" = { "/tmp" = {
device = "tmpfs"; device = "tmpfs";
fsType = "tmpfs"; fsType = "tmpfs";
options = "nosuid,nodev,noatime"; options = ["nosuid" "nodev" "noatime"];
}; };
}; };