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

(-)a/debian/scripts/koha-functions.sh (-3 / +2 lines)
Lines 104-110 is_instance() Link Here
104
{
104
{
105
    local instancename=$1
105
    local instancename=$1
106
106
107
    if find /etc/koha/sites -mindepth 1 -maxdepth 1 \
107
    if find -L /etc/koha/sites -mindepth 1 -maxdepth 1 \
108
                         -type d -printf '%f\n'\
108
                         -type d -printf '%f\n'\
109
          | grep -q -x "$instancename" ; then
109
          | grep -q -x "$instancename" ; then
110
        return 0
110
        return 0
Lines 239-245 adjust_paths_dev_install() Link Here
239
239
240
get_instances()
240
get_instances()
241
{
241
{
242
    find /etc/koha/sites -mindepth 1 -maxdepth 1\
242
    find -L /etc/koha/sites -mindepth 1 -maxdepth 1\
243
                         -type d -printf '%f\n' | sort
243
                         -type d -printf '%f\n' | sort
244
}
244
}
245
245
246
- 

Return to bug 18913