Current Path : /var/lib/dpkg/info/ |
Current File : /var/lib/dpkg/info/linux-base-sgx.postinst |
#!/bin/sh # postinst script for linux-base-sgx set -e case "$1" in configure) # Add the sgx_prv group unless it's already there addgroup --quiet --system sgx_prv || true ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac