You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The puppetlabs' apt module has changed and now adds a warning for short apt keys. The following code should remove the warning, however you may have to update your apt module dependency to a later version for this to work properly.
diff --git a/modules/percona/manifests/repo/apt.pp b/modules/percona/manifests/repo/apt.pp index 308fa9d..7219194 100644 --- a/modules/percona/manifests/repo/apt.pp +++ b/modules/percona/manifests/repo/apt.pp @@ -2,7 +2,7 @@ # class percona::repo::apt {
The puppetlabs' apt module has changed and now adds a warning for short apt keys. The following code should remove the warning, however you may have to update your apt module dependency to a later version for this to work properly.
diff --git a/modules/percona/manifests/repo/apt.pp b/modules/percona/manifests/repo/apt.pp
index 308fa9d..7219194 100644
--- a/modules/percona/manifests/repo/apt.pp
+++ b/modules/percona/manifests/repo/apt.pp
@@ -2,7 +2,7 @@
#
class percona::repo::apt {
- apt::key { 'CD2EFD2A':
+ apt::key { '430BDF5C56E7C94E848EE60C1C4CBDCDCD2EFD2A':
ensure => present,
notify => Exec['percona::repo::apt-get update'],
}
@@ -14,7 +14,7 @@ class percona::repo::apt {
source => false,
content => template ("${module_name}/repo/sources.list.erb"),
notify => Exec['percona::repo::apt-get update'],
- require => Apt::Key['CD2EFD2A'],
+ require => Apt::Key['430BDF5C56E7C94E848EE60C1C4CBDCDCD2EFD2A'],
}
}
@@ -27,7 +27,7 @@ class percona::repo::apt {
release => $::lsbdistcodename,
repos => 'main',
notify => Exec['percona::repo::apt-get update'],
- require => Apt::Key['CD2EFD2A'],
+ require => Apt::Key['430BDF5C56E7C94E848EE60C1C4CBDCDCD2EFD2A'],
}
}
The text was updated successfully, but these errors were encountered: