18 lines
324 B
Puppet
18 lines
324 B
Puppet
# ppa.pp
|
|
|
|
define apt::ppa(
|
|
|
|
) {
|
|
require apt
|
|
|
|
exec { "apt-update-${name}":
|
|
command => "/usr/bin/aptitude update",
|
|
refreshonly => true,
|
|
}
|
|
|
|
exec { "add-apt-repository-${name}":
|
|
command => "/usr/bin/add-apt-repository ${name}",
|
|
notify => Exec["apt-update-${name}"],
|
|
}
|
|
}
|
|
|