|
Lines 25-34
set -e
Link Here
|
| 25 |
[ -r /etc/default/koha-common ] && . /etc/default/koha-common |
25 |
[ -r /etc/default/koha-common ] && . /etc/default/koha-common |
| 26 |
|
26 |
|
| 27 |
# include helper functions |
27 |
# include helper functions |
| 28 |
if [ -f "/usr/share/koha/bin/koha-functions.sh" ]; then |
28 |
if [ -f "/usr/sbin/koha-functions.sh" ]; then |
| 29 |
. "/usr/share/koha/bin/koha-functions.sh" |
29 |
. "/usr/sbin/koha-functions.sh" |
| 30 |
else |
30 |
else |
| 31 |
echo "Error: /usr/share/koha/bin/koha-functions.sh not present." 1>&2 |
31 |
echo "Error: /usr/sbin/koha-functions.sh not present." 1>&2 |
| 32 |
exit 1 |
32 |
exit 1 |
| 33 |
fi |
33 |
fi |
| 34 |
|
34 |
|
| 35 |
- |
|
|