mirror of
https://github.com/unraid/webgui.git
synced 2026-04-23 02:31:45 -05:00
Augment help text.
This commit is contained in:
@@ -50,26 +50,29 @@ Enhanced macOS interoperability:
|
||||
> Finder browsing, and ability to export Time Machine shares. This may cause some issues with Windows clients, however.
|
||||
> Please also refer to the [VFS_FRUIT MAN PAGE](https://www.mankier.com/8/vfs_fruit).
|
||||
|
||||
Use NETBIOS [experimental]:
|
||||
: <select name="USE_NETBIOS" size="1" class="narrow">
|
||||
Enable NetBIOS:
|
||||
: <select name="USE_NETBIOS" size="1" class="narrow" <?if ($var['fsState']=="Started"):?>disabled<?endif;?>>
|
||||
<?=mk_option($var['USE_NETBIOS'], "no", "No")?>
|
||||
<?=mk_option($var['USE_NETBIOS'], "yes", "Yes")?>
|
||||
</select>
|
||||
|
||||
> Select 'Yes' to enable NETBIOS.
|
||||
> Select 'Yes' to enable NetBIOS. If enabled, SMBv1 protocol will also be recognized. If disbled,
|
||||
> clients must use SMBv2 or higher.
|
||||
|
||||
Use WSD [experimental]:
|
||||
: <select name="USE_WSD" size="1" class="narrow" onchange="checkWSDSettings()">
|
||||
Enable WSD:
|
||||
: <select name="USE_WSD" size="1" class="narrow" onchange="checkWSDSettings()" <?if ($var['fsState']=="Started"):?>disabled<?endif;?>>
|
||||
<?=mk_option($var['USE_WSD'], "no", "No")?>
|
||||
<?=mk_option($var['USE_WSD'], "yes", "Yes")?>
|
||||
</select>
|
||||
|
||||
> Select 'Yes' to enable WSD (WS-Discovery).
|
||||
> Select 'Yes' to enable WSD (WS-Discovery). The only reason to turn this off is when you are running an
|
||||
> old LAN setup based on SMBv1.
|
||||
|
||||
WSD options [experimental]:
|
||||
: <input type="text" name="WSD_OPT" maxlength="80" value="<?=htmlspecialchars($var['WSD_OPT'])?>">
|
||||
: <input type="text" name="WSD_OPT" maxlength="80" value="<?=htmlspecialchars($var['WSD_OPT'])?>" <?if ($var['fsState']=="Started"):?>disabled<?endif;?>>
|
||||
|
||||
> WSD daemon options.
|
||||
> This is a command line otions string passed to the WSD daemon upon startup. Leave this field blank unless
|
||||
> instructed by support to put something here.
|
||||
|
||||
|
||||
: <input type="submit" name="changeShare" value="Apply" disabled><input type="button" value="Done" onclick="done()"><?if ($var['fsState']=="Started"):?>Array must be <span class="strong big">Stopped</span> to change<?endif;?>
|
||||
|
||||
Reference in New Issue
Block a user