forked from samba-team/samba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the mdns name configuration variable to control the mdns hostname. The default is to use the NETBIOS name of the system to match previous versions which is typically the hostname in all capitals. A value of mdns can be provided to defer the hostname to the mdns library. With the recent patch to support time machine being merged this patch allows for a user to configure the server name that is advertised to be lower cased through Avahi advertisements. Signed-off-by: Kevin Anderson <[email protected]> Reviewed-by: Ralph Boehme <[email protected]> Reviewed-by: Jeremy Allison <[email protected]>
- Loading branch information
1 parent
b8d0602
commit 18307f8
Showing
6 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<samba:parameter name="mdns name" | ||
type="enum" | ||
context="G" | ||
enumlist="enum_mdns_name_values" | ||
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> | ||
|
||
<description> | ||
<para>This parameter controls the name that multicast DNS | ||
support advertises as its' hostname.</para> | ||
|
||
<para>The default is to use the NETBIOS name which is typically | ||
the hostname in all capital letters. </para> | ||
|
||
<para>A setting of mdns will defer the hostname configuration | ||
to the MDNS library that is used.</para> | ||
|
||
</description> | ||
<value type="default">netbios</value> | ||
</samba:parameter> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters