Puppet Class: hipchat::repo
- Defined in:
- manifests/repo.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/repo.pp', line 1
class hipchat::repo {
case $osfamily {
'Debian': {
apt::source { 'hipchat':
location => 'http://downloads.hipchat.com/linux/apt',
release => 'stable',
repos => 'main',
include_src => false,
}
apt::key { 'hipchat':
key_source => 'https://www.hipchat.com/keys/hipchat-linux.key',
}
}
}
}
|