How to create a secondary samba domain? Hello everybody, first of all sorry for my english.
I'm trying to implement a secondary samba domain to test a new test environment. My first domain it's working without problems for a year, now i need to update my production samba server version to integrate Windows 7 machines with him but i need to test first how Windows 7 and samba works. To do this i want to implement this secondary samba to reproduce my actual scenario.
I have modified the config_template.xml into zimbra_posixaccount.zip and zimbra_samba.zip admin extensions. My config_template.xml looks like this:
<zimletConfig name="zimbra_samba" version="4">
<global>
<property name="gidBase">10000</property>
<property name="uidBase">10000</property>
<property name="ridBase">1000</property>
<property name="ldapSuffix">dc=domain1,dc=com</property>
<property name="ldapGroupSuffix">ou=groups</property>
<property name="ldapMachineSuffix">ou=machines</property>
</global>
<global>
<property name="gidBase">100000</property>
<property name="uidBase">100000</property>
<property name="ridBase">10000</property>
<property name="ldapSuffix">dc=test,dc=com</property>
<property name="ldapGroupSuffix">ou=groups</property>
<property name="ldapMachineSuffix">ou=machines</property>
</global>
</zimletConfig>
<zimletConfig name="zimbra_posixaccount" version="4">
<global>
<property name="loginShells">/bin/bash,/bin/sh,/bin/false</property>
<property name="homePath">/home/%u</property>
<property name="gidBase">10000</property>
<property name="uidBase">10000</property>
<property name="ldapSuffix">dc=domain1,dc=com</property>
<property name="ldapGroupSuffix">ou=groups</property>
</global>
<global>
<property name="loginShells">/bin/bash,/bin/sh,/bin/false</property>
<property name="homePath">/home/%u</property>
<property name="gidBase">100000</property>
<property name="uidBase">100000</property>
<property name="ldapSuffix">dc=test,dc=com</property>
<property name="ldapGroupSuffix">ou=groups</property>
</global>
</zimletConfig>
So it says to me the implementation works fine but when I reload the admin console the new TEST domain doesn't appear.
Anyone knows how can I do this?
Thanks in advance! |