blob: f88a2fc17a6fcd8c6e06c8adba83e42975e558f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# arg 1: the new package version
post_install() {
echo ""
echo ">>> An example configuration has been saved to /etc/motion-dispatch.conf"
}
op=$1
shift
[ "$(type -t "$op")" = "function" ] && $op "$@"
# vim:set ts=2 et:
|