2010-04-27 22:38:28 +02:00
|
|
|
# ppa.pp
|
|
|
|
|
|
|
|
define apt::ppa(
|
2011-03-11 18:02:50 +01:00
|
|
|
|
2010-04-27 22:38:28 +02:00
|
|
|
) {
|
|
|
|
include apt
|
2011-03-11 18:02:50 +01:00
|
|
|
|
2011-03-11 18:10:25 +01:00
|
|
|
package { "python-software-properties": }
|
|
|
|
|
2011-03-11 19:14:31 +01:00
|
|
|
exec { "apt-update":
|
|
|
|
command => "/usr/bin/apt-get update",
|
|
|
|
refreshonly => true,
|
|
|
|
}
|
|
|
|
|
|
|
|
exec { "/usr/bin/add-apt-repository ${name}":
|
|
|
|
require => Package["python-software-properties"],
|
|
|
|
notify => Exec["apt-update"]
|
|
|
|
}
|
2010-04-27 22:38:28 +02:00
|
|
|
}
|
|
|
|
|