7 lines
281 B
Bash
Executable File
7 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -e /run/openrc/started/ckan ]; then
|
|
lxc-attach -u 8003 -g 8003 ckan -- paster --plugin=ckan tracking update -c /etc/ckan/ckan.ini >/dev/null
|
|
lxc-attach -u 8003 -g 8003 ckan -- paster --plugin=ckan search-index rebuild -r -c /etc/ckan/ckan.ini >/dev/null
|
|
fi
|