First commit
[puppet-modules/puppetlabs-apt.git] / manifests / ppa.pp
1 # ppa.pp
2
3 define apt::ppa(
4         
5 ) {
6         include apt
7         
8         exec { "add-apt-repository ${name}":
9                 require => Package["python-software-properties"],
10                 # TODO: unless => 'check'
11         }
12 }
13