Puppet Class: apt::repo::proliant_mcp

Defined in:
manifests/repo/proliant_mcp.pp

Overview

Class: apt::repo::prolian_mcp

Parameters:

  • distro (Any) (defaults to: $::lsbdistcodename)


3
4
5
6
7
8
9
10
11
12
# File 'manifests/repo/proliant_mcp.pp', line 3

class apt::repo::proliant_mcp ($distro = $::lsbdistcodename) {
  apt::repository { 'proliant_mcp':
    url        => 'http://downloads.linux.hp.com/SDR/repo/mcp',
    distro     => "${distro}/current",
    repository => 'non-free',
    key        => '2689B887',
    key_url    => 'http://downloads.linux.hp.com/SDR/repo/mcp/GPG-KEY-mcp';
  }

}