diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 04:42:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 04:42:34 +0000 |
commit | 1d6d8671262dc6b2a4e02e4a1878d91b86647054 (patch) | |
tree | 802f631f1abc6181cc842079844c15d37a54b14f /README.md | |
parent | Initial commit. (diff) | |
download | dh-nss-1d6d8671262dc6b2a4e02e4a1878d91b86647054.tar.xz dh-nss-1d6d8671262dc6b2a4e02e4a1878d91b86647054.zip |
Adding upstream version 1.7.upstream/1.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..229841a --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# `dh_installnss` - enable NSS services + +`dh_installnss` is a debhelper program that is responsible for injecting +NSS (Name Service Switch) services into `/etc/nsswitch.conf`. + +## Example + +An example `debian/nss` file could look like this: + + hosts before=dns mdns4 + hosts before=mdns4 mdns4_minimal [NOTFOUND=return] + hosts remove-only mdns # In case the user manually added it + +After the installation of this package, the original configuration of +the `hosts` database in `/etc/nsswitch.conf` will change from: + + hosts: files dns + +to: + + hosts: files mdns4_minimal [NOTFOUND=return] mdns4 dns + +## Documentation + +Detailed documentation can be found in `dh_installnss(1)`. |