module-puppetlabs-apt/manifests/ppa.pp

14 lines
181 B
ObjectPascal
Raw Normal View History

2010-04-27 22:38:28 +02:00
# ppa.pp
define apt::ppa(
) {
include apt
exec { "/usr/bin/add-apt-repository ${name}":
2010-04-27 22:38:28 +02:00
require => Package["python-software-properties"],
# TODO: unless => 'check'
}
}