From: Silvio Rhatto Date: Mon, 19 Aug 2024 13:20:35 +0000 (-0300) Subject: Fix: use the recommended APT keyrings folder (2) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=d89a898e60743b2743dc7dbd9fbcd2ac04a82cf2;p=puppet-php.git Fix: use the recommended APT keyrings folder (2) --- diff --git a/manifests/ppa.pp b/manifests/ppa.pp index 07e379d..07b96fa 100644 --- a/manifests/ppa.pp +++ b/manifests/ppa.pp @@ -31,7 +31,7 @@ class php::ppa inherits php::repository { } File['/etc/apt/sources.list.d/php.list'] { - content => "deb http://ppa.launchpad.net/ondrej/php/ubuntu ${::lsbdistcodename} main\n", + content => "deb [signed-by=/etc/apt/keyrings/ondrej_ubuntu_php.gpg] http://ppa.launchpad.net/ondrej/php/ubuntu ${::lsbdistcodename} main\n", require => File['/etc/apt/keyrings/ondrej_ubuntu_php.gpg'], } }