[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38182] [PATCH 3/3] services: Add pam-mount.
From: |
Ludovic Courtès |
Subject: |
[bug#38182] [PATCH 3/3] services: Add pam-mount. |
Date: |
Mon, 25 Nov 2019 23:52:16 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hi Guillaume,
I’ve applied the first two patches, thanks!
Guillaume Le Vaillant <address@hidden> skribis:
> * gnu/services/pam-mount.scm: New file.
> * gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
> * doc/guix.texi (PAM Mount Service): New subsection.
[…]
> +The @code{(gnu services pam-mount)} module provides a service allowing
> +users to mount volumes when they log in. It should be able to mount any
> +volume format supported by the system.
How does one specify what needs to be mounted upon log-in of a specific
user? I’m new to PAM-Mount and I’m left wondering. :-)
> Note that to automatically mount
> +encrypted volumes using the password the user entered to log in, the
> +@code{pam-mount} package must be added in the @code{packages} field of
> +the @code{operating-system} definition.
Should we instead arrange so that the ‘pam-mount’ command (or whatever
it’s called) is automatically found, instead of asking users to add it
to ‘packages’?
Perhaps the manual should give an example for the global config file,
too?
> +(define %pam-mount-default-configuration
> + (plain-file "pam_mount.conf.xml"
> + "<?xml version=\"1.0\" encoding=\"utf-8\" ?>
> +<!DOCTYPE pam_mount SYSTEM \"pam_mount.conf.xml.dtd\">
> +<pam_mount>
> +<debug enable=\"0\" />
> +<mntoptions
> +allow=\"nosuid,nodev,loop,encryption,fsck,nonempty,allow_root,allow_other\"
> />
> +<mntoptions require=\"nosuid,nodev\" />
> +<logout wait=\"0\" hup=\"no\" term=\"no\" kill=\"no\" />
> +<mkmountpoint enable=\"1\" remove=\"true\" />
> +</pam_mount>\n"))
I suggest writing SXML instead and using ‘sxml->xml’, if you don’t
mind. :-)
> +(define pam-mount-service-type
> + (service-type
> + (name 'pam-mount)
> + (extensions (list (service-extension etc-service-type
> + pam-mount-etc-service)
> + (service-extension pam-root-service-type
> + pam-mount-pam-service)))
> + (default-value (pam-mount-configuration))))
Please also add a ‘description’ field.
Could you send an updated patch?
Thanks!
Ludo’.