2010-04-27 22:38:28 +02:00
|
|
|
# ppa.pp
|
|
|
|
|
2012-02-24 23:03:51 +01:00
|
|
|
define apt::ppa(
|
2014-02-14 23:49:43 +01:00
|
|
|
$ensure = 'present',
|
2013-07-16 15:31:19 +02:00
|
|
|
$release = $::lsbdistcodename,
|
2014-02-21 01:43:48 +01:00
|
|
|
$options = $apt::params::ppa_options,
|
2012-02-24 23:03:51 +01:00
|
|
|
) {
|
|
|
|
include apt::params
|
2012-05-03 19:22:49 +02:00
|
|
|
include apt::update
|
2012-02-24 23:03:51 +01:00
|
|
|
|
2012-04-11 23:54:13 +02:00
|
|
|
$sources_list_d = $apt::params::sources_list_d
|
|
|
|
|
2012-02-24 23:03:51 +01:00
|
|
|
if ! $release {
|
2012-03-21 14:20:13 +01:00
|
|
|
fail('lsbdistcodename fact not available: release parameter required')
|
2012-02-24 23:03:51 +01:00
|
|
|
}
|
|
|
|
|
2014-01-09 20:35:17 +01:00
|
|
|
if $::operatingsystem != 'Ubuntu' {
|
2014-05-20 22:24:28 +02:00
|
|
|
fail('apt::ppa is currently supported on Ubuntu only.')
|
2014-01-09 20:35:17 +01:00
|
|
|
}
|
|
|
|
|
2013-07-22 14:48:32 +02:00
|
|
|
$filename_without_slashes = regsubst($name, '/', '-', 'G')
|
|
|
|
$filename_without_dots = regsubst($filename_without_slashes, '\.', '_', 'G')
|
|
|
|
$filename_without_ppa = regsubst($filename_without_dots, '^ppa:', '', 'G')
|
2012-05-08 19:47:43 +02:00
|
|
|
$sources_list_d_filename = "${filename_without_ppa}-${release}.list"
|
2013-01-12 00:21:39 +01:00
|
|
|
|
2013-11-09 01:50:21 +01:00
|
|
|
if $ensure == 'present' {
|
|
|
|
$package = $::lsbdistrelease ? {
|
|
|
|
/^[1-9]\..*|1[01]\..*|12.04$/ => 'python-software-properties',
|
|
|
|
default => 'software-properties-common',
|
|
|
|
}
|
2013-01-12 00:21:39 +01:00
|
|
|
|
2013-11-09 01:50:21 +01:00
|
|
|
if ! defined(Package[$package]) {
|
|
|
|
package { $package: }
|
|
|
|
}
|
2012-04-02 09:00:59 +02:00
|
|
|
|
2013-11-09 01:50:21 +01:00
|
|
|
if defined(Class[apt]) {
|
|
|
|
$proxy_host = $apt::proxy_host
|
|
|
|
$proxy_port = $apt::proxy_port
|
2014-07-11 01:38:45 +02:00
|
|
|
case $proxy_host {
|
|
|
|
false, '', undef: {
|
2013-11-09 01:50:21 +01:00
|
|
|
$proxy_env = []
|
2014-07-11 01:38:45 +02:00
|
|
|
}
|
|
|
|
default: {
|
|
|
|
$proxy_env = ["http_proxy=http://${proxy_host}:${proxy_port}", "https_proxy=http://${proxy_host}:${proxy_port}"]
|
|
|
|
}
|
2013-11-09 01:50:21 +01:00
|
|
|
}
|
|
|
|
} else {
|
2013-07-16 09:52:06 +02:00
|
|
|
$proxy_env = []
|
2013-07-11 15:29:38 +02:00
|
|
|
}
|
2013-11-09 01:50:21 +01:00
|
|
|
exec { "add-apt-repository-${name}":
|
2014-09-05 18:51:39 +02:00
|
|
|
environment => $proxy_env,
|
|
|
|
command => "/usr/bin/add-apt-repository ${options} ${name}",
|
|
|
|
unless => "/usr/bin/test -s ${sources_list_d}/${sources_list_d_filename}",
|
|
|
|
user => 'root',
|
|
|
|
logoutput => 'on_failure',
|
|
|
|
notify => Exec['apt_update'],
|
|
|
|
require => [
|
2013-12-02 13:17:00 +01:00
|
|
|
File['sources.list.d'],
|
2013-11-09 01:50:21 +01:00
|
|
|
Package[$package],
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
file { "${sources_list_d}/${sources_list_d_filename}":
|
|
|
|
ensure => file,
|
|
|
|
require => Exec["add-apt-repository-${name}"],
|
|
|
|
}
|
2011-05-30 19:24:06 +02:00
|
|
|
}
|
2013-11-09 01:50:21 +01:00
|
|
|
else {
|
2012-02-24 23:03:51 +01:00
|
|
|
|
2013-11-09 01:50:21 +01:00
|
|
|
file { "${sources_list_d}/${sources_list_d_filename}":
|
|
|
|
ensure => 'absent',
|
|
|
|
notify => Exec['apt_update'],
|
|
|
|
}
|
2012-02-24 23:03:51 +01:00
|
|
|
}
|
2012-05-08 00:27:53 +02:00
|
|
|
|
|
|
|
# Need anchor to provide containment for dependencies.
|
|
|
|
anchor { "apt::ppa::${name}":
|
|
|
|
require => Class['apt::update'],
|
|
|
|
}
|
2010-04-27 22:38:28 +02:00
|
|
|
}
|