To Hold A Package At Installed Version This prevents updates to the specified package
sudo apt-mark hold <package>To Release Hold On Package Version This allows updates again
| docker run --rm filia/ponysay "hello ELK" |
| { | |
| "name": "revco/php-cli-devtools", | |
| "type": "command", | |
| "description": "Helper to install commonly used CLI dev tools", | |
| "keywords": ["wp-cli","phpcpd","phpcs","phpdcd","phploc","phpmd","phpunit","phpreport","development"], | |
| "homepage": "https://github.com/revco/php-cli-devtools", | |
| "license": "MIT", | |
| "authors": [ | |
| { | |
| "name": "Don Bauer", |
| # Command Syntax | |
| sudo dseditgroup -o edit -a <USERNAME> -t user <GROUP NAME> | |
| # To Fix Zend Server Permissions Issues | |
| COMMAND="dseditgroup -o edit -a `whoami` -t user zend" | |
| sudo $COMMAND |
To Hold A Package At Installed Version This prevents updates to the specified package
sudo apt-mark hold <package>To Release Hold On Package Version This allows updates again
| #!/usr/bin/env bash | |
| # Update APT | |
| apt-get -y update | |
| # Install Prequisites | |
| apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev | |
| # Change to Temp | |
| cd /tmp |