forked from wallabag/docker
9 lines
163 B
Bash
9 lines
163 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "wallabag" ];then
|
|
ansible-playbook -i /etc/ansible/hosts /etc/ansible/entrypoint.yml -c local
|
|
exec s6-svscan /etc/s6/
|
|
fi
|
|
|
|
exec "$@"
|