Current Path : /var/lib/dpkg/info/ |
Current File : /var/lib/dpkg/info/php-mapi.postinst |
#!/bin/sh set -e # Automatically added by dh_php/UNDECLARED for conf in mapi; do dpkg-maintscript-helper rm_conffile /etc/php/mods-available/${conf}.ini -- "$@" done if [ -e /usr/lib/php/php-maintscript-helper ] ; then . /usr/lib/php/php-maintscript-helper for version in 7.2 ; do for conf in mapi ; do php_invoke enmod $version ALL $conf || exit 1 done done else for conf in mapi ; do phpenmod $conf done fi # End automatically added section