blob: 885eca430019fdafbc9e7e2db291eb1522657adc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo ":: Dagu workflow engine installed"
echo ":: Start with: systemctl enable --now dagu.service"
echo ":: Web UI: http://127.0.0.1:8080"
echo ":: Configuration: /etc/dagu/environment"
echo ":: DAG definitions: /var/lib/dagu/dags/"
}
post_upgrade() {
echo ":: Dagu upgraded — check release notes for breaking changes"
echo ":: Restart with: systemctl restart dagu.service"
}
|