From cda5e46580f31ec5632705538629ed29b7474a4b Mon Sep 17 00:00:00 2001 From: Brian Mix Date: Fri, 2 May 2025 10:38:12 -0500 Subject: [PATCH] fix for apt error fix for error during apt-get update error `Repository 'https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy InRelease' changed its 'Label' value from '***** The main PPA for supported PHP versions with many PECL extensions *****' to 'PPA for PHP'` --- scripts/homestead.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/homestead.rb b/scripts/homestead.rb index 1fd98ecaf..5868e7fce 100644 --- a/scripts/homestead.rb +++ b/scripts/homestead.rb @@ -270,7 +270,7 @@ def self.configure(config, settings) end end - config.vm.provision "apt_update", type: "shell", inline: "apt-get update" + config.vm.provision "apt_update", type: "shell", inline: "apt-get --allow-releaseinfo-change update" # Ensure we have PHP versions used in sites in our features if settings.has_key?('sites')