added more options to nfs config on horizon
This commit is contained in:
parent
7c0c94b47a
commit
4b014ed29f
|
@ -41,65 +41,71 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
"/mnt/leyla_documents" = {
|
"/mnt/leyla_documents" = {
|
||||||
device = "defiant:/exports/leyla_documents";
|
device = "defiant:/export/leyla_documents";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [
|
options = [
|
||||||
|
"vers=4"
|
||||||
"x-systemd.automount"
|
"x-systemd.automount"
|
||||||
"noauto"
|
"noauto"
|
||||||
"user"
|
"user"
|
||||||
"noatime"
|
"noatime"
|
||||||
"nofail"
|
"nofail"
|
||||||
"soft"
|
|
||||||
"x-systemd.idle-timeout=600"
|
"x-systemd.idle-timeout=600"
|
||||||
"fsc"
|
"fsc"
|
||||||
|
"timeo=600"
|
||||||
|
"retrans=2"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/mnt/eve_documents" = {
|
"/mnt/eve_documents" = {
|
||||||
device = "defiant:/exports/eve_documents";
|
device = "defiant:/export/eve_documents";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [
|
options = [
|
||||||
|
"vers=4"
|
||||||
"x-systemd.automount"
|
"x-systemd.automount"
|
||||||
"noauto"
|
"noauto"
|
||||||
"user"
|
"user"
|
||||||
"nofail"
|
"nofail"
|
||||||
"soft"
|
|
||||||
"x-systemd.idle-timeout=600"
|
"x-systemd.idle-timeout=600"
|
||||||
"fsc"
|
"fsc"
|
||||||
|
"timeo=600"
|
||||||
|
"retrans=2"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/mnt/users_documents" = {
|
"/mnt/users_documents" = {
|
||||||
device = "defiant:/exports/users_documents";
|
device = "defiant:/export/users_documents";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [
|
options = [
|
||||||
|
"vers=4"
|
||||||
"x-systemd.automount"
|
"x-systemd.automount"
|
||||||
"noauto"
|
"noauto"
|
||||||
"user"
|
"user"
|
||||||
"nofail"
|
"nofail"
|
||||||
"soft"
|
|
||||||
"x-systemd.idle-timeout=600"
|
"x-systemd.idle-timeout=600"
|
||||||
"fsc"
|
"fsc"
|
||||||
|
"timeo=600"
|
||||||
|
"retrans=2"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/mnt/media" = {
|
"/mnt/media" = {
|
||||||
device = "defiant:/exports/media";
|
device = "defiant:/export/media";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [
|
options = [
|
||||||
|
"vers=4"
|
||||||
"x-systemd.automount"
|
"x-systemd.automount"
|
||||||
"noauto"
|
"noauto"
|
||||||
"user"
|
"user"
|
||||||
"noatime"
|
"noatime"
|
||||||
"nofail"
|
"nofail"
|
||||||
"soft"
|
|
||||||
"x-systemd.idle-timeout=600"
|
"x-systemd.idle-timeout=600"
|
||||||
"noatime"
|
"noatime"
|
||||||
"nodiratime"
|
"nodiratime"
|
||||||
"relatime"
|
"relatime"
|
||||||
"rsize=32768"
|
|
||||||
"wsize=32768"
|
|
||||||
"fsc"
|
"fsc"
|
||||||
|
"timeo=600"
|
||||||
|
"retrans=2"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue