Back to Recipes
jacobgraf
3 recipes shared
Update Guzzle to Patch Proxy Header Vulnerability (Unattended)
This Forge recipe will update Guzzle (along with all dependencies). It will bypass all prompts and will also automatically use current configuration files instead of rewriting them.
apt upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" php-guzzle
9 years ago
jacobgraf
Update & Upgrade (Unattended)
This Forge recipe will update everything. It will bypass all prompts and will also automatically use current configuration files instead of rewriting them.
apt update
apt upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
9 years ago
jacobgraf
Remove Old Packages (Unattended)
This Forge Recipe will remove all old, non-required packages and bypass all prompts.
apt-get -y autoremove
9 years ago
jacobgraf