module-puppetlabs-apt/manifests/ppa.pp

14 lines
179 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
exec { "/usr/bin/add-apt-repository ${name}":
2010-04-27 22:38:28 +02:00
require => Package["python-software-properties"],
# TODO: unless => 'check'
}
}