Chassis / Chassis

📦 Chassis is a virtual server for your WordPress site, built using Vagrant.
http://chassis.io/
GNU Lesser General Public License v3.0
621 stars 84 forks source link

Chassis attempting to download a non-existant PHP distro #584

Closed mikeselander closed 6 years ago

mikeselander commented 6 years ago

Vagrant is attempting to download a non-existant distribution of PHP 7.2 when updating it and running vagrant provision. When setting PHP to 7.2, it looks to be attempting to download 7.2.9, which does not exist in the directory where it's looking: http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/

==> default: Err:1 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 php7.2-common amd64 7.2.9-1+ubuntu16.04.1+deb.sury.org+1
==> default:   404  Not Found
==> default: Err:2 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 php7.2-json amd64 7.2.9-1+ubuntu16.04.1+deb.sury.org+1
==> default:   404  Not Found
==> default: Err:3 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 php7.2-opcache amd64 7.2.9-1+ubuntu16.04.1+deb.sury.org+1
==> default:   404  Not Found
==> default: Err:4 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 php7.2-readline amd64 7.2.9-1+ubuntu16.04.1+deb.sury.org+1
==> default:   404  Not Found
==> default: Err:5 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 php7.2-cli amd64 7.2.9-1+ubuntu16.04.1+deb.sury.org+1
==> default:   404  Not Found
==> default: Err:6 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 libphp7.2-embed amd64 7.2.9-1+ubuntu16.04.1+deb.sury.org+1
==> default:   404  Not Found
==> default: E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/php7.2-common_7.2.9-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb  404  Not Found
==> default:
==> default: E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/php7.2-json_7.2.9-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb  404  Not Found
==> default:
==> default: E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/php7.2-opcache_7.2.9-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb  404  Not Found
==> default:
==> default: E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/php7.2-readline_7.2.9-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb  404  Not Found
==> default:
==> default: E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/php7.2-cli_7.2.9-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb  404  Not Found
==> default:
==> default: E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php7.2/libphp7.2-embed_7.2.9-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb  404  Not Found
  1. What operating system do you use? Mac OS X

  2. What version of Vagrant are you running? 2.1.5

  3. Are you using VirtualBox or VMWare and which version are you using? Virtualbox 5.2.18

  4. Do you have a custom YAML file? If so, what does it contain?

paths:
  base: ..
  content: content
  wp: wordpress

# Default domain to known.
hosts:
  - client.local

# Define database prefix, since we have tests as well.
database:
  name: wordpress
  user: wordpress
  password: vagrantpassword
  prefix: wp_

# Install a list of Chassis extensions automatically.
extensions:
  - Chassis/Cavalcade
  - Chassis/Debugging
  - Chassis/Memcache
  - Chassis/SequelPro
  - Chassis/Tester
  - Chassis/Xdebug

# PHP version.
php: 7.2

# Setup a predictable administrator to begin with.
admin:
  user: clientdev
  email: admin@example.com
  password: password

# Default our theme activated and turned on.
themes:
  - client
rmccue commented 6 years ago

This turned out to be an out-of-date apt cache. See https://github.com/Chassis/Chassis/issues/582