diff --git a/yum/manifests/init.pp b/yum/manifests/init.pp index a37e2a4..bf074b5 100644 --- a/yum/manifests/init.pp +++ b/yum/manifests/init.pp @@ -122,6 +122,14 @@ class yum::repo::adobe { gpgkey => "puppet:///modules/yum/keys/adobe.key", } + if $architecture == "x86_64" { + yum::repo { "adobe-x86_64": + descr => "Adobe Systems Incorporated (x86_64)", + baseurl => "http://linuxdownload.adobe.com/linux/x86_64/", + gpgkey => "puppet:///modules/yum/keys/adobe.key", + } + } + }