github.com/nilium/gitlab-runner@v12.5.0+incompatible/packaging/scripts/postinst.deb (about)

     1  #!/bin/sh
     2  set -e
     3  
     4  case "$1" in
     5    abort-upgrade|abort-remove|abort-deconfigure)
     6      ;;
     7  
     8    configure)
     9      /usr/share/gitlab-runner/post-install
    10      /usr/share/gitlab-runner/clear-docker-cache || :
    11      ;;
    12  
    13    *)
    14      echo "postinst called with unknown argument \`$1'" >&2
    15      exit 1
    16      ;;
    17  esac
    18  
    19  exit 0