d76f922dfb
Not doing this breaks big parts of functionality, such as aptitude why.
30 lines
677 B
Puppet
30 lines
677 B
Puppet
define apt::sources_list (
|
|
$ensure = 'present',
|
|
$source = '',
|
|
$content = undef )
|
|
{
|
|
|
|
if $source == '' and $content == undef {
|
|
fail("One of \$source or \$content must be specified for apt_sources_snippet ${name}")
|
|
}
|
|
if $source != '' and $content != undef {
|
|
fail("Only one of \$source or \$content must specified for apt_sources_snippet ${name}")
|
|
}
|
|
|
|
file { "/etc/apt/sources.list.d/${name}":
|
|
ensure => $ensure,
|
|
owner => root, group => 0, mode => 0644;
|
|
}
|
|
|
|
if $source {
|
|
File["/etc/apt/sources.list.d/${name}"] {
|
|
source => $source,
|
|
}
|
|
}
|
|
else {
|
|
File["/etc/apt/sources.list.d/${name}"] {
|
|
content => $content,
|
|
}
|
|
}
|
|
}
|
|
|