Re: [CentOS] password algorithm with authconfig vs authselect

2021-04-21 Thread Leon Fauster via CentOS
On 21.04.21 22:56, Chris Adams wrote: Once upon a time, Leon Fauster said: How does the new "way" looks like (>=EL8), to switch the password algorithm? It looks like authselect doesn't support that. While authconfig tried to be a super-multi-tool that knew how to configure all the things, I

Re: [CentOS] password algorithm with authconfig vs authselect

2021-04-21 Thread Chris Adams
Once upon a time, Leon Fauster said: > How does the new "way" looks like (>=EL8), to switch the password > algorithm? It looks like authselect doesn't support that. While authconfig tried to be a super-multi-tool that knew how to configure all the things, I think it got to a point where it was

[CentOS] password algorithm with authconfig vs authselect

2021-04-21 Thread Leon Fauster via CentOS
In the old days I could do # authconfig --passalgo=sha256 --update With EL8 comes authselect now (replacement of authconfig). authselect --passalgo=sha512 --update does not work and seems to be unsupported. # grep -R passalgo /usr/lib/python3.6/site-packages/authselect/

Re: [CentOS] Problem with RequiresMountsFor defined in a systemd service

2021-04-21 Thread Jonathan Billings
On Wed, Apr 21, 2021 at 07:36:26AM +, Carlos Lopez wrote: > > Hi all, > > I have setup a systemd service that needs to mount a NFS share before > starts. To accomplish this I have defined: > > RequiresMountsFor=/data/sysos > > As a dependency in [Unit] section but it doesn’t work. NFS

Re: [CentOS] Problem with RequiresMountsFor defined in a systemd service

2021-04-21 Thread Kris Knigga (TT)
On Wed, Apr 21, 2021 at 2:37 AM Carlos Lopez wrote: > Hi all, > > I have setup a systemd service that needs to mount a NFS share before > starts. To accomplish this I have defined: > > RequiresMountsFor=/data/sysos > > As a dependency in [Unit] section but it doesn’t work. NFS share is >

[CentOS] Problem with RequiresMountsFor defined in a systemd service

2021-04-21 Thread Carlos Lopez
Hi all, I have setup a systemd service that needs to mount a NFS share before starts. To accomplish this I have defined: RequiresMountsFor=/data/sysos As a dependency in [Unit] section but it doesn’t work. NFS share is defined in fstab with “defaults,noauto” options also .. What am I doing