mirror of
				https://github.com/shivammathur/setup-php.git
				synced 2025-10-31 07:16:22 +07:00 
			
		
		
		
	Use mirror for ppa:ondrej/php on Ubuntu 16.04
This commit is contained in:
		| @ -30,12 +30,17 @@ cleanup_lists() { | ||||
| # Function to add ppa:ondrej/php. | ||||
| add_ppa() { | ||||
|   ppa=${1:-ondrej/php} | ||||
|   if ! apt-cache policy | grep -q "$ppa"; then | ||||
|   if [ "$DISTRIB_RELEASE" = "16.04" ] && [ "$ppa" = "ondrej/php" ]; then | ||||
|     LC_ALL=C.UTF-8 sudo apt-add-repository --remove ppa:"$ppa" -y || true | ||||
|     LC_ALL=C.UTF-8 sudo apt-add-repository http://setup-php.com/ondrej/php/ubuntu -y | ||||
|     sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 4f4ea0aae5267a6c | ||||
|   elif ! apt-cache policy | grep -q "$ppa"; then | ||||
|     cleanup_lists "$(dirname "$ppa")" | ||||
|     LC_ALL=C.UTF-8 sudo apt-add-repository ppa:"$ppa" -y | ||||
|     if [ "$DISTRIB_RELEASE" = "16.04" ]; then | ||||
|       sudo "$debconf_fix" apt-get update | ||||
|     fi | ||||
|   fi | ||||
|  | ||||
|   if [ "$DISTRIB_RELEASE" = "16.04" ]; then | ||||
|     sudo "$debconf_fix" apt-get update | ||||
|   fi | ||||
| } | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shivam Mathur
					Shivam Mathur