~ruther/guix-local

cd4a3cb359467c53e2ddd7240845b55b1129c91d — Ludovic Courtès 11 years ago 4c7ac9a
syscalls: Update /etc/mtab, not /etc/fstab.

* guix/build/syscalls.scm (remove-from-mtab): Replace "fstab" with
  "mtab".
1 files changed, 2 insertions(+), 2 deletions(-)

M guix/build/syscalls.scm
M guix/build/syscalls.scm => guix/build/syscalls.scm +2 -2
@@ 106,9 106,9 @@
             ((device mount-point type options freq passno)
              (string=? target mount-point))
             (_ #f))
            (call-with-input-file "/etc/fstab" read-mtab)))
            (call-with-input-file "/etc/mtab" read-mtab)))

  (call-with-output-file "/etc/fstab"
  (call-with-output-file "/etc/mtab"
    (lambda (port)
      (for-each (match-lambda
                 ((device mount-point type options freq passno)