View | Details | Raw Unified | Return to bug 28385
Collapse All | Expand All

(-)a/t/Koha/Config.t (-1 / +13 lines)
Lines 117-123 subtest 'read_from_file() tests' => sub { Link Here
117
            'backup_db_via_tools' => '0',
117
            'backup_db_via_tools' => '0',
118
            'backup_conf_via_tools' => '0',
118
            'backup_conf_via_tools' => '0',
119
            'install_log' => '/home/koha/misc/koha-install-log',
119
            'install_log' => '/home/koha/misc/koha-install-log',
120
            'useldapserver' => '0',
120
            'useldapserver' => '1',
121
            'ldapserver' => {
122
                ldapserver => {
123
                    hostname => 'ldap://another_ldap_server:389',
124
                    user     => 'user',
125
                    pass     => 'password',
126
                    mapping  => {
127
                        firstname => {
128
                            is => 'givenName'
129
                        }
130
                    }
131
                }
132
            },
121
            'useshibboleth' => '0',
133
            'useshibboleth' => '0',
122
            'zebra_lockdir' => '/home/koha/var/lock/zebradb',
134
            'zebra_lockdir' => '/home/koha/var/lock/zebradb',
123
            'lockdir' => '__LOCK_DIR__',
135
            'lockdir' => '__LOCK_DIR__',
(-)a/t/data/koha-conf.xml (-2 / +9 lines)
Lines 101-107 Link Here
101
 <supportdir>/home/koha/src/misc</supportdir>
101
 <supportdir>/home/koha/src/misc</supportdir>
102
 -->
102
 -->
103
 <install_log>/home/koha/misc/koha-install-log</install_log>
103
 <install_log>/home/koha/misc/koha-install-log</install_log>
104
 <useldapserver>0</useldapserver><!-- see C4::Auth_with_ldap for extra configs you must add if you want to turn this on -->
104
 <useldapserver>1</useldapserver><!-- see C4::Auth_with_ldap for extra configs you must add if you want to turn this on -->
105
 <ldapserver id="ldapserver">
106
  <hostname>ldap://another_ldap_server:389</hostname>
107
  <user>user</user>
108
  <pass>password</pass>
109
  <mapping>
110
   <firstname is="givenName" ></firstname>
111
  </mapping>
112
 </ldapserver>
105
 <useshibboleth>0</useshibboleth><!-- see C4::Auth_with_shibboleth for extra configs you must do to turn this on -->
113
 <useshibboleth>0</useshibboleth><!-- see C4::Auth_with_shibboleth for extra configs you must do to turn this on -->
106
 <zebra_lockdir>/home/koha/var/lock/zebradb</zebra_lockdir>
114
 <zebra_lockdir>/home/koha/var/lock/zebradb</zebra_lockdir>
107
 <lockdir>__LOCK_DIR__</lockdir>
115
 <lockdir>__LOCK_DIR__</lockdir>
108
- 

Return to bug 28385