Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-14 | refer to correct resource | mh | |
2010-08-10 | improve exec naming | mh | |
2010-08-09 | fix relation | mh | |
2010-08-09 | fix relation | mh | |
2010-08-07 | remove unnecessary fileserver variable (#2460) | mh | |
2010-07-15 | fixed unclomplete merge with riseups master | varac | |
2010-07-15 | merge with riseups master | varac | |
2010-06-28 | set loglevel to info so we don't pollute the logs | mh | |
2010-05-09 | adjust new module dir path | mh | |
2010-02-24 | Moved apt-get update and -autoclean to a seperate, optional cronjob in order ↵ | nadir | |
to fasten the puppetrun and to decrease the I/O of embedded devices | |||
2010-02-17 | added apt::custom_sources_template to deploy custom sources.list.d/xyz.list ↵ | nadir | |
from templates | |||
2009-12-17 | Increased Ubuntu support | Varac | |
2009-12-13 | added $apt_volatile_enabled, updated README | nadir | |
2009-12-11 | cleaned init.pp | nadir | |
2009-12-11 | fixed typo | root | |
2009-12-11 | cleaned 50unattended_upgrades | root | |
2009-12-11 | Added apt::unattended_upgrades class, and extra template for "deb-src" | root | |
2009-12-10 | removed forked message from README, doesnt make sense here | Micah Anderson | |
2009-12-10 | added $backports_enabled for including backports repository | nadir | |
2009-12-10 | added $backports_enabled for including backports repository | Varac | |
2009-11-23 | update modules path to the new 0.25 required layout | Micah Anderson | |
2009-11-14 | fix preseeding dir path | mh | |
2009-11-02 | change pending module file resources to new 0.25 style | mh | |
2009-10-30 | fix typo | mh | |
2009-10-30 | don't require anything | mh | |
2009-10-30 | fixing requirements | mh | |
2009-10-30 | switch to new lsb way | mh | |
2009-10-30 | our module_dir is currently called modules_dir | mh | |
2009-10-30 | fix another typo | mh | |
2009-10-30 | fixing a string issue and tell it to install the package | mh | |
2009-10-30 | introduce a class to manage unattended-upgrades | mh | |
2009-10-30 | add refactored files | mh | |
2009-10-30 | refactor to fit pbp | mh | |
- refactor every class and define into its very own file to fit better (at least our) puppet's best practices. - some cosmetic rearrangements - no code changes have been made, only reordering | |||
2009-09-03 | Merge commit 'sarava/master' | Micah Anderson | |
2009-07-10 | Updating to new common module | Silvio Rhatto | |
2009-07-10 | Renaming modules_dir to module_dir | Silvio Rhatto | |
2009-04-13 | puppet wants a backslash escaped | Micah Anderson | |
2009-04-09 | fix missing close bracket typo | Micah Anderson | |
2009-04-09 | the custom_keys exec needs to subscribe to an object for the refreshonly to fire | Micah Anderson | |
2009-04-08 | fix the exec call to be more reasonable shell and to not use a for loop variable | Micah Anderson | |
which is pure madness inside of puppet | |||
2009-04-08 | Revert "fix the custom_key_dir process so it actually works by replacing the" | Micah Anderson | |
This reverts commit 21ef026475782d5b59597a27fa06cfab7c9224dc. apt-key does not support glob options | |||
2009-03-16 | remove the riseup key file, we do not need to distribute this in this | Micah Anderson | |
module, its handled with our custom_key_dir | |||
2009-03-16 | fix the custom_key_dir process so it actually works by replacing the | Micah Anderson | |
bulky for loop in the exec with a much more simpler process that works. Also, the recurse over the key dir needed to notify the exec to trigger it. | |||
2009-03-15 | add riseup repo key | Pietro Ferrari | |
2009-03-04 | Merge branch 'master' of gitosis@labs.riseup.net:module_apt | Micah Anderson | |
2009-03-04 | fix recurse parameter for $custom_key_dir to use the proper value | Micah Anderson | |
2009-03-04 | try to use backports.org key for lenny too | Pietro Ferrari | |
2008-09-29 | update header to include additional copyright info for my modifications | Micah Anderson | |
2008-09-29 | remove duplicate definition for preseeded_package, that was a mistake | Micah Anderson | |
2008-09-29 | add the upgrade_package define | Micah Anderson | |
This simplifies upgrades for DSA security announcements or point-releases. This will ensure that the named package is upgrade to the version specified, only if the package is installed, otherwise nothing happens. If the specified version is 'latest' (the default), then the package is ensured to be upgraded to the latest package revision when it becomes available. For example, the following upgrades the perl package to version 5.8.8-7etch1 (if it is installed), it also upgrades the syslog-ng and perl-modules packages to their latest (also, only if they are installed): upgrade_package { "perl": version => '5.8.8-7etch1'; "syslog-ng": version => latest; "perl-modules": } |