Skip to content

Commit

Permalink
Release 7.7.10 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Sep 25, 2024
1 parent 0580fe7 commit d27e438
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 7.7.10 2024-09-25 <dave at tiredofit dot ca>

### Added
- Add php-ext disable reset statement to refresh environments


## 7.7.9 2024-09-25 <dave at tiredofit dot ca>

### Changed
Expand Down
10 changes: 10 additions & 0 deletions install/usr/sbin/php-ext
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,16 @@ disable_module() {
fi
done
;;
reset )
case ${os} in
"alpine" )
rm -rf ${php_prefix}conf.d/*
;;
"debian" )
silent phpdismod $(basename $module .ini)
;;
esac
;;
* )
if [ -f "${php_prefix}mods-available/$1.ini" ]; then
echo "Disabling $1"
Expand Down

0 comments on commit d27e438

Please sign in to comment.