module-puppetlabs-apt/manifests/ppa.pp

21 lines
358 B
ObjectPascal
Raw Normal View History

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
package { "python-software-properties": }
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
}