X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=debian%2Fneurodebian.postinst;fp=debian%2Fneurodebian.postinst;h=97cbc86da5bd277e08c24792044d40e30aa01155;hb=6c6fa9cd3bd627a60f165682f96af3cc06d9ccc9;hp=0000000000000000000000000000000000000000;hpb=15d0a7f8a363c9fe2b286ddcb99acc41c9c91681;p=neurodebian.git diff --git a/debian/neurodebian.postinst b/debian/neurodebian.postinst new file mode 100755 index 0000000..97cbc86 --- /dev/null +++ b/debian/neurodebian.postinst @@ -0,0 +1,32 @@ +#!/bin/bash + +set -e + +. /usr/share/debconf/confmodule + + +case "$1" in + configure) + # obtain all the options and call nd-configurerepo + opts="--do-not-update" + db_get neurodebian/release; [ "$RET" = "auto" ] || opts+=" -r '$RET'" + db_get neurodebian/mirror; nd_mirror="${RET##* }" # get just a url if it came together with alias + db_get neurodebian/flavor; nd_flavor="$RET" + db_get neurodebian/components; nd_components="${RET// /}" + + db_get neurodebian/overwrite; [ "$RET" = "true" ] && opts+=" --overwrite" || : + db_get neurodebian/suffix; [ "$RET" = "" ] || opts+=" --suffix='$RET'" || : + + eval nd-configurerepo -m "$nd_mirror" -c "$nd_components" $opts + ;; + abort-upgrade|abort-remove|abort-deconfigure) + # nothing to do + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER#