NFS: Difference between revisions

imported>Samueldr
m h1 → h2... h1 are forbidden (by mediawiki styleguide) even though they're possible
imported>Lschuermann
`options` attribute in `fileSystems` needs to be a list of strings
Line 15: Line 15:
   fileSystems."/export/mafuyu" = {
   fileSystems."/export/mafuyu" = {
     device = "/mnt/mafuyu";
     device = "/mnt/mafuyu";
     options = "bind";
     options = [ "bind" ];
   };
   };


   fileSystems."/export/sen" = {
   fileSystems."/export/sen" = {
     device = "/mnt/sen";
     device = "/mnt/sen";
     options = "bind";
     options = [ "bind" ];
   };
   };


   fileSystems."/export/tomoyo" = {
   fileSystems."/export/tomoyo" = {
     device = "/mnt/tomoyo";
     device = "/mnt/tomoyo";
     options = "bind";
     options = [ "bind" ];
   };
   };


   fileSystems."/export/kotomi" = {
   fileSystems."/export/kotomi" = {
     device = "/mnt/kotomi";
     device = "/mnt/kotomi";
     options = "bind";
     options = [ "bind" ];
   };
   };
}
}