We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This might be a good start.
#!/bin/bash set -e if [ "$1" = "remove" ]; then if [ -e /usr/lib/php/php-maintscript-helper ] ; then . /usr/lib/php/php-maintscript-helper php_invoke dismod "<%= php_version %>" cli relay || exit 1 php_invoke dismod "<%= php_version %>" fpm relay || exit 1 fi fi if [ "$1" = "purge" ] ; then find "/etc/php/<%= php_version %>" -xtype l 2>/dev/null | \ while read symlink; do if [ "$(basename "$(readlink -m "${symlink}")")" = "relay.ini" ]; then rm -f "${symlink}" fi done fi exit 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This might be a good start.
The text was updated successfully, but these errors were encountered: