nfsroot: fix /etc/exports duplicate fsid

This commit is contained in:
Astro 2022-06-29 17:40:15 +02:00
parent f4c9f909b9
commit a36901790d
1 changed files with 3 additions and 3 deletions

View File

@ -60,17 +60,17 @@ in {
in ''
/var/lib/nfsroot/dacbert ${
lib.concatMapStringsSep " " (subnet:
"${subnet}(${opts "rw" 0})"
"${subnet}(${opts "rw" 1})"
) allowed
}
/var/lib/nfsroot/riscbert ${
lib.concatMapStringsSep " " (subnet:
"${subnet}(${opts "rw" 1})"
"${subnet}(${opts "rw" 2})"
) allowed
}
/var/lib/dump-dvb/whoopsie ${
lib.concatMapStringsSep " " (subnet:
"${subnet}(${opts "rw" 2})"
"${subnet}(${opts "rw" 3})"
) allowed
}
'';