X-Git-Url: https://snippets.scripts.mit.edu/gitweb.cgi/.git/blobdiff_plain/6d930f304655c3467cbd52f1c3b595f1fbdc3e33..7871bb44698093fa16f35d50648bbdd3f177c883:/apt-zephyr/apt-zephyr diff --git a/apt-zephyr/apt-zephyr b/apt-zephyr/apt-zephyr index 7db23c5..fdf1318 100755 --- a/apt-zephyr/apt-zephyr +++ b/apt-zephyr/apt-zephyr @@ -102,4 +102,18 @@ pre_install_pkgs () esac } -pre_install_pkgs +post_invoke () +{ + echo 'Done.' | send_zephyr +} + +if [ "$1" = "--pre-install-pkgs" ]; then + pre_install_pkgs +elif [ "$1" = "--post-invoke" ]; then + post_invoke +else + echo "usage: $0 {--pre-install-pkgs | --post-invoke}" >&2 + echo "(Hint: you probably need to update /etc/apt/apt.conf.d/90zephyr.)" >&2 +fi + +exit 0