diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-09 03:21:59 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-09 03:21:59 +0000 |
commit | d23fc546047fbbd5e1f4d5ca08ccdfb0fcbd814b (patch) | |
tree | c890aaaa706c6b5091fd82cd00e0c8699c747f8d /users.py | |
parent | ff26e191f4e6fbbef291211e5746ea2de077fe5d (diff) | |
download | anaconda-d23fc546047fbbd5e1f4d5ca08ccdfb0fcbd814b.tar.gz anaconda-d23fc546047fbbd5e1f4d5ca08ccdfb0fcbd814b.tar.xz anaconda-d23fc546047fbbd5e1f4d5ca08ccdfb0fcbd814b.zip |
explicitly disable nis if it's not being used so that it gets removed from nsswitch
Diffstat (limited to 'users.py')
-rw-r--r-- | users.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -183,6 +183,8 @@ class Authentication: if not self.nisuseBroadcast: args.append ("--nisserver") args.append (self.nisServer) + else: + args.append ("--disablenis") if self.useLdap: args.append ("--enableldap") |