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

(-)a/debian/scripts/koha-indexer (-1 / +1 lines)
Lines 134-140 restart_indexer() Link Here
134
            log_end_msg 1
134
            log_end_msg 1
135
        fi
135
        fi
136
    else
136
    else
137
        log_daemon_msg "Indexer not running for $name."
137
        log_warning_msg "Indexer not running for $name."
138
        start_indexer $name
138
        start_indexer $name
139
    fi
139
    fi
140
}
140
}
(-)a/debian/scripts/koha-plack (-1 / +1 lines)
Lines 164-170 restart_plack() Link Here
164
    if is_plack_running ${instancename}; then
164
    if is_plack_running ${instancename}; then
165
        stop_plack $instancename && start_plack $instancename
165
        stop_plack $instancename && start_plack $instancename
166
    else
166
    else
167
        log_daemon_msg "Plack not running for ${instancename}."
167
        log_warning_msg "Plack not running for ${instancename}."
168
        start_plack $instancename
168
        start_plack $instancename
169
    fi
169
    fi
170
}
170
}
(-)a/debian/scripts/koha-sip (-1 / +1 lines)
Lines 167-173 restart_sip() Link Here
167
        echo $noLF `start_sip ${name}`
167
        echo $noLF `start_sip ${name}`
168
    else
168
    else
169
        if [ "$verbose" != "no" ]; then
169
        if [ "$verbose" != "no" ]; then
170
            log_daemon_msg "Warning: SIP server not running for ${name}."
170
            log_warning_msg "Warning: SIP server not running for ${name}."
171
            start_sip ${name}
171
            start_sip ${name}
172
        else
172
        else
173
            start_sip ${name}
173
            start_sip ${name}
(-)a/debian/scripts/koha-worker (-1 / +1 lines)
Lines 144-150 restart_worker() Link Here
144
            log_end_msg 1
144
            log_end_msg 1
145
        fi
145
        fi
146
    else
146
    else
147
        log_daemon_msg "Worker not running for $name ($queue)."
147
        log_warning_msg "Worker not running for $name ($queue)."
148
        start_worker $name $queue
148
        start_worker $name $queue
149
    fi
149
    fi
150
}
150
}
(-)a/debian/scripts/koha-z3950-responder (-1 / +1 lines)
Lines 167-173 restart_z3950() Link Here
167
            log_end_msg 1
167
            log_end_msg 1
168
        fi
168
        fi
169
    else
169
    else
170
        log_daemon_msg "Z39.50/SRU not running for ${instancename}."
170
        log_warning_msg "Z39.50/SRU not running for ${instancename}."
171
        start_z3950 $instancename
171
        start_z3950 $instancename
172
    fi
172
    fi
173
}
173
}
(-)a/debian/scripts/koha-zebra (-3 / +2 lines)
Lines 146-156 restart_zebra() Link Here
146
        echo $noLF `start_zebra ${name}`
146
        echo $noLF `start_zebra ${name}`
147
    else
147
    else
148
        if [ "$verbose" != "no" ]; then
148
        if [ "$verbose" != "no" ]; then
149
            log_daemon_msg "Zebra not running for ${name}."
149
            log_warning_msg "Zebra not running for ${name}."
150
            start_zebra ${name}
150
            start_zebra ${name}
151
        else
151
        else
152
            start_zebra ${name}
152
            start_zebra ${name}
153
            return 1
153
            return 0
154
        fi
154
        fi
155
    fi
155
    fi
156
}
156
}
157
- 

Return to bug 30684