Skip to content

Commit

Permalink
fix yumrepo
Browse files Browse the repository at this point in the history
  • Loading branch information
shoekstra committed Mar 13, 2015
1 parent 7cfc776 commit 39628cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
name => 'isv_ownCloud_community',
descr => "Latest stable community release of ownCloud (CentOS_CentOS-${::operatingsystemmajrelease})",
baseurl => "http://download.opensuse.org/repositories/isv:/ownCloud:/community/CentOS_CentOS-${::operatingsystemmajrelease}/",
gpgcheck => true,
gpgcheck => 1,
gpgkey => "http://download.opensuse.org/repositories/isv:/ownCloud:/community/CentOS_CentOS-${::operatingsystemmajrelease}/repodata/repomd.xml.key",
enabled => true,
enabled => 1,
before => Package[$::owncloud::package_name],
}
}
Expand All @@ -35,9 +35,9 @@
name => 'isv_ownCloud_community',
descr => "Latest stable community release of ownCloud (Fedora_${::operatingsystemmajrelease})",
baseurl => "http://download.opensuse.org/repositories/isv:/ownCloud:/community/Fedora_${::operatingsystemmajrelease}/",
gpgcheck => true,
gpgcheck => 1,
gpgkey => "http://download.opensuse.org/repositories/isv:/ownCloud:/community/Fedora_${::operatingsystemmajrelease}/repodata/repomd.xml.key",
enabled => true,
enabled => 1,
before => Package[$::owncloud::package_name],
}
}
Expand Down
8 changes: 4 additions & 4 deletions spec/classes/owncloud_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
# descr: "Latest stable community release of ownCloud (CentOS_CentOS-#{facts[:operatingsystemmajrelease]})",
descr: "Latest stable community release of ownCloud (CentOS_CentOS-#{facts[:operatingsystemmajrelease]})",
baseurl: "http://download.opensuse.org/repositories/isv:/ownCloud:/community/CentOS_CentOS-#{facts[:operatingsystemmajrelease]}/",
gpgcheck: true,
gpgcheck: 1,
gpgkey: "http://download.opensuse.org/repositories/isv:/ownCloud:/community/CentOS_CentOS-#{facts[:operatingsystemmajrelease]}/repodata/repomd.xml.key",
enabled: true
enabled: 1
).that_comes_before('Package[owncloud]')
end
when 'Fedora'
Expand All @@ -92,9 +92,9 @@
# descr: "Latest stable community release of ownCloud (Fedora_#{facts[:operatingsystemmajrelease]})",
descr: "Latest stable community release of ownCloud (Fedora_#{facts[:operatingsystemmajrelease]})",
baseurl: "http://download.opensuse.org/repositories/isv:/ownCloud:/community/Fedora_#{facts[:operatingsystemmajrelease]}/",
gpgcheck: true,
gpgcheck: 1,
gpgkey: "http://download.opensuse.org/repositories/isv:/ownCloud:/community/Fedora_#{facts[:operatingsystemmajrelease]}/repodata/repomd.xml.key",
enabled: true
enabled: 1
).that_comes_before('Package[owncloud]')
end
end
Expand Down

0 comments on commit 39628cf

Please sign in to comment.