diff options
author | mh <mh@immerda.ch> | 2012-08-16 09:35:21 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-08-16 09:35:21 +0200 |
commit | 0c2f31b5d5c972c179cb06ea1a06e6e0e7b1b262 (patch) | |
tree | 55e38dde8d7f0fce7a08fb39774084e724e1a2e3 /README | |
parent | f823fcd5b7408d7d690cfc5c5063e28db06271a4 (diff) | |
parent | 4f433dbd5238e6b5211d3b0f240ff58031c3da2b (diff) | |
download | puppet-apt-0c2f31b5d5c972c179cb06ea1a06e6e0e7b1b262.tar.gz puppet-apt-0c2f31b5d5c972c179cb06ea1a06e6e0e7b1b262.tar.bz2 |
Merge remote-tracking branch 'shared/master'
Conflicts:
README
manifests/dist_upgrade/initiator.pp
manifests/init.pp
manifests/preseeded_package.pp
manifests/unattended_upgrades.pp
Diffstat (limited to 'README')
-rw-r--r-- | README | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -17,7 +17,7 @@ Ubuntu support is lagging behind but not absent either. This module needs: -- lsb-release installed +- the lsb module: git://labs.riseup.net/shared-lsb - the common module: git://labs.riseup.net/shared-common - the concat module: git://labs.riseup.net/shared-concat @@ -314,6 +314,19 @@ Example: priority => 999; } + apt::preferences_snippet{ + 'unstable_fallback': + package => '*', + release => 'unstable', + priority => 1; + } + + apt::preferences_snippet{ + 'ttdnsd': + pin => 'origin deb.torproject.org', + priority => 999; + } + apt::preseeded_package ---------------------- @@ -391,3 +404,15 @@ this resource so you don't have to manage this yourself if you need to make sure APT indexes are up-to-date before a package upgrade is attempted, but don't want "apt-get update" to happen on every Puppet run. + + +Licensing +========= + +This puppet module is licensed under the GPL version 3 or later. Redistribution +and modification is encouraged. + +The GPL version 3 license text can be found in the "LICENSE" file accompanying +this puppet module, or at the following URL: + +http://www.gnu.org/licenses/gpl-3.0.html |