Fix quoted values in nslcd config

This commit is contained in:
James Valleroy 2016-06-14 06:57:28 -04:00
parent bb2b21ea69
commit ef40941c7c
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -52,11 +52,11 @@ def subcommand_pre_install(_):
check=True)
subprocess.run(
['debconf-set-selections'],
input=b'nslcd nslcd/ldap-uris string "ldapi:///"',
input=b'nslcd nslcd/ldap-uris string ldapi:///',
check=True)
subprocess.run(
['debconf-set-selections'],
input=b'nslcd nslcd/ldap-base string "dc=thisbox"',
input=b'nslcd nslcd/ldap-base string dc=thisbox',
check=True)
subprocess.run(
['debconf-set-selections'],