bd3b46ac07
File headers are there to indicate that the files should not be touched directly on the server. By changing the first sentence to "This file is managed by Puppet", we reinforce the idea that it is already taken care of by something else. Signed-off-by: Gabriel Filion <lelutin@gmail.com>
18 lines
680 B
Text
18 lines
680 B
Text
# This file is managed by puppet
|
|
# all local modifications will be overwritten
|
|
|
|
# basic <%= lsbdistcodename %>
|
|
deb <%= real_main_apt_source %> <%= lsbdistcodename %> main contrib non-free
|
|
# security suppport
|
|
<% if (lsbdistcodename == "sid" || lsbdistcodename == "unstable") -%>
|
|
# There is no security mirror for <%= lsbdistcodename %>
|
|
<% else -%>
|
|
deb http://security.debian.org/ <%= lsbdistcodename %>/updates main contrib non-free
|
|
<% end -%>
|
|
|
|
# backports
|
|
<% if (lsbdistcodename == "sid" || lsbdistcodename == "unstable") -%>
|
|
# There are no backports for for <%= lsbdistcodename %>
|
|
<% else -%>
|
|
deb http://www.backports.org/debian/ <%= lsbdistcodename %>-backports main
|
|
<% end -%>
|