nixos/networking: make /etc/netgroup by default
This will prevent nscd from complaining /etc/netgroup being absent. Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
This commit is contained in:
parent
2032339e5b
commit
d1d6403cb5
2 changed files with 10 additions and 0 deletions
|
@ -509,6 +509,12 @@ http://some.json-exporter.host:7979/probe?target=https://example.com/some/json/e
|
||||||
The GNOME desktop manager once again installs <package>gnome3.epiphany</package> by default.
|
The GNOME desktop manager once again installs <package>gnome3.epiphany</package> by default.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
NixOS now generates empty <literal>/etc/netgroup</literal>.
|
||||||
|
<literal>/etc/netgroup</literal> defines network-wide groups and may affect to setups using NIS.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -193,6 +193,10 @@ in
|
||||||
cat ${escapeShellArgs cfg.hostFiles} > $out
|
cat ${escapeShellArgs cfg.hostFiles} > $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# /etc/netgroup: Network-wide groups.
|
||||||
|
netgroup.text = mkDefault ''
|
||||||
|
'';
|
||||||
|
|
||||||
# /etc/host.conf: resolver configuration file
|
# /etc/host.conf: resolver configuration file
|
||||||
"host.conf".text = ''
|
"host.conf".text = ''
|
||||||
multi on
|
multi on
|
||||||
|
|
Loading…
Reference in a new issue