samba GUI aux params does not apply to config
This project has moved to github - see https://github.com/freenas
Brought to you by:
cochard,
mattolander
Maybe the variable handling in while loop doesn't work due newlines in the input field.
in file: /etc/rc.d/ix-samba , version 8rc3 lines:
and
definately a bug in aux params handling due mis-handling the multi-line input from SQL database. I modified the script in this way:
--- /etc/rc.d/ix-samban/2011-03-14 16:24:51.000000000 +0200c.d/ix-samba ix-samba
+++ ix-samba 2011-03-30 21:22:39.271557735 +0300
@@ -9,7 +9,7 @@
. /etc/rc.subr
-: ${SMB_CONF:="/usr/local/etc/smb.conf"}
+: ${SMB_CONF:="smb.conf.debug"}
generate_smbconf()
{
@@ -380,10 +380,15 @@
do
if [ -d "${mountpoint}" ]; then
echo "[${name}]"
echo "path = ${mountpoint}"
and it's like i suspected, the newlines in last param (auxsmbconf) causes while to all paramaters after the first one to $name.
this is the output:
cat smb.echo
someshare|some comment|/mnt/sharer/sharebox|0|1|0|0|0|sharer|0|0|10.10.10.0/24 10.10.11.0/24 10.10.12.0/24||force group = groupa
force user = sharer
create mask = 666
force create mode = 666
directory mask = 777
force directory mode = 777
usera|Usera Levy|/mnt/iken/usera|0|0|0|0|1|www|0|0|10.10.10.10/24|ALL|valid users = usera
------------------ test --------------------
someshare some comment /mnt/sharer/sharebox 0 1 0 0 0 sharer 0 0 10.10.10.0/24 10.10.11.0/24 10.10.12.0/24 force group = groupa
------------------ /test -------------------
------------------ test --------------------
force user = sharer
------------------ /test -------------------
------------------ test --------------------
create mask = 666
------------------ /test -------------------
------------------ test --------------------
force create mode = 666
------------------ /test -------------------
------------------ test --------------------
directory mask = 777
------------------ /test -------------------
------------------ test --------------------
force directory mode = 777
------------------ /test -------------------
------------------ test --------------------
------------------ /test -------------------
------------------ test --------------------
usera Usera Levy /mnt/iken/usera 0 0 0 0 1 www 0 0 10.10.10.10/24 ALL valid users = usera
------------------ /test -------------------