pam modules

2019-01-25 Thread Saeed Jamali
Hello.
I have a pam module and I want to use it at login time,
as I understand from my last questions I have to do some changes in (gnu
system pam)
how can I apply this changes? do I need to Invoke guix system reconfigure
pam.scm?
thank you so much


Re: pam module question

2019-01-11 Thread Saeed Jamali
Thank you!

On Fri, Jan 11, 2019, 13:41 Ricardo Wurmus 
> Hi Saeed,
>
> > I have developed a test pam module and I want to change login
> configuration
> > to use it during opening and closing sessions  but I do not have any Idea
> > how to change login configuration in /etc/pam.d/login (its a symlink to
> > store) can you please help me,
>
> (gnu system pam) defines “unix-pam-service”, which returns a PAM service
> for a given name.  The module also contains the definition of
> “base-pam-services”, which uses “unix-pam-service” and returns a list of
> PAM services.
>
> This is how the PAM configuration is changed on Guix systems.  You would
> not modify /etc/pam.d directly, as it is generated on system
> reconfiguration and checked out from /gnu/store.
>
> --
> Ricardo
>
>


pam module question

2019-01-11 Thread Saeed Jamali
Hello and thank you for you great work,
I have developed a test pam module and I want to change login configuration
to use it during opening and closing sessions  but I do not have any Idea
how to change login configuration in /etc/pam.d/login (its a symlink to
store) can you please help me,
Thank you.


Re: PAM module

2018-12-19 Thread Saeed Jamali
Yes, thank you.

On Wed, Dec 19, 2018, 22:14 Brett Gilio 
> Saeed Jamali writes:
>
> > How we can change system configurations in /etc, I want to add some pam
> > module to pam configuration files for exapmle pam.d/login,
>
> You use your system configuration file you made during the installation
> and add relevant services to your configuration. I believe the Guix
> website has documentation on various PAM.
>
> Does that help?
>
> Brett
>


PAM module

2018-12-19 Thread Saeed Jamali
How we can change system configurations in /etc, I want to add some pam
module to pam configuration files for exapmle pam.d/login,