mirror of
https://github.com/unraid/webgui.git
synced 2026-01-15 14:09:54 -06:00
35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
Menu="SMB:2"
|
|
Title="Workgroup Settings"
|
|
Tag="sitemap"
|
|
Cond="($var['shareSMBEnabled']=='yes')"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2018, Lime Technology
|
|
* Copyright 2012-2018, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<form markdown="1" name="WorkGroup" method="POST" action="/update.htm" target="progressFrame">
|
|
Workgroup:
|
|
: <input type="text" name="WORKGROUP" maxlength="40" value="<?=htmlspecialchars($var['WORKGROUP'])?>" class="narrow">
|
|
|
|
> Enter your local network Workgroup name. Usually this is "WORKGROUP".
|
|
|
|
Local master:
|
|
: <select name="localMaster">
|
|
<?=mk_option($var['localMaster'], "no", "No");?>
|
|
<?=mk_option($var['localMaster'], "yes", "Yes");?>
|
|
</select>
|
|
|
|
> If set to 'Yes' then the server will fully participate in browser elections, and in the absense
|
|
> of other servers, will usually become the local Master Browser.
|
|
|
|
|
|
: <input type="submit" name="changeShare" value="Apply" disabled><input type="button" value="Done" onclick="done()">
|
|
</form> |