- 09 Jul, 2013 1 commit
-
-
Felix Stuermer committed
-
- 04 Jul, 2013 1 commit
-
-
- optimize for the extremely common case of people specifying pkg names which are, ultimately, already installed on a system here time went from 16s for a series of pkgs to 3s to just check that they were installed.
Seth Vidal committed
-
- 30 Jun, 2013 2 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 29 Jun, 2013 1 commit
-
-
Jack Kuan committed
-
- 26 Jun, 2013 1 commit
-
-
Michael DeHaan committed
-
- 24 Jun, 2013 1 commit
-
-
Previously, a configuration file name of None was being passed into up2dateInitConfig(). This resulted in a correct configuration import, but failed to properly save the configuration back to disk in the event a different serverURL was supplied. This change removes support for customizing the up2date filename entirely, and relies on up2date to choose the default config filename.
James Laska committed
-
- 20 Jun, 2013 1 commit
-
-
A small error in the reuse of a variable caused packages to never get purged. This commit fixes that. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed
-
- 19 Jun, 2013 5 commits
-
-
This reverts commit 4942a06b. Conflicts: lib/ansible/runner/__init__.py
Michael DeHaan committed -
Older python-apt modules don't export Package.installed_files and there seems to be no other way to figure out if a package is removed-but-not-purged, so we just always assume it's purged. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
A package may be removed but not purged with APT. The only way to identify this state is by looking at the list of installed files of a package. Even if the package has no files installed, this list will be non-empty until the package is removed: # python -c "import apt; c=apt.Cache(); c.update(); c.open(); p=c['ruby1.8']; print p, p.installed, p.installed_files" <Package: name:'ruby1.8' id:1425> None [u''] # dpkg --purge ruby1.8 (Reading database ... 27904 files and directories currently installed.) Removing ruby1.8 ... Purging configuration files for ruby1.8 ... # python -c "import apt; c=apt.Cache(); c.update(); c.open(); p=c['ruby1.8']; print p, p.installed, p.installed_files" <Package: name:'ruby1.8' id:1425> None [] See http://bugs.debian.org/712749 too. If a package is not marked installed but it still 'has_files', then it should be processed if the request is to purge it. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
A small error in the reuse of a variable caused packages to never get purged. This commit fixes that. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
Michael DeHaan committed
-
- 18 Jun, 2013 1 commit
-
-
You can use apt module with update_cache and without specifying a package. Update the docs to reflect this.
Jesse Keating committed
-
- 17 Jun, 2013 2 commits
-
-
Veeti Paananen committed
-
Jan-Piet Mens committed
-
- 15 Jun, 2013 3 commits
-
-
hardcoded lists in ansible code, just add WITH_ITEMS_USES_LIST in a comment anywhere, and of course, support recieving params as list. Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed -
Migrated all examples: in DOCUMENTATION=''' string to standalone EXAMPLES=''' string Added deprecation warning to moduledev.rst and remove deprecated example from it Fixed up a few typos and uppercased some acronyms. add consistency to how EXAMPLES are formatted
Jan-Piet Mens committed -
The biggest change has been to package_latest since it was previously just comparing version numbers before and after an upgrade had run. We now parse the output from a dry run instead. Thanks to Johan Belin for triggering the discussion :).
Patrik Lundin committed
-
- 14 Jun, 2013 3 commits
-
-
Veeti Paananen committed
-
Veeti Paananen committed
-
Chris Hoffman committed
-
- 13 Jun, 2013 3 commits
-
-
Chris Hoffman committed
-
Edgars M committed
-
Examples showed that modules name is rhnreq_ks, when it actually is rhn_register.
E-M committed
-
- 09 Jun, 2013 1 commit
-
-
Andrew Straw committed
-
- 08 Jun, 2013 5 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Patrick Callahan committed
-
- 07 Jun, 2013 4 commits
-
-
James Laska committed
-
Also ... * When unregistering, first unsubscribe from all content
James Laska committed -
rhnreg_ks command allows users to manage registration to a Red Hat Network (RHN) (e.g. rhn.redhat.com) server. The moduel will also interact with the specified RHN system via XMLRPC as needed. Before proceeding with registration, the rhnreg_ks module will enable the system to receive updates from RHN. This involves enabling the appropriate RHN yum plugin, as well as disabling an active subscription-manager yum plugin. Once enabled, the module will support the following operations: * configure * register * subscribe to custom child channels (see `rhn-channel` command) * unregister
James Laska committed -
Patrick Callahan committed
-
- 06 Jun, 2013 3 commits
-
-
Michael DeHaan committed
-
James Laska committed
-
The subscription_manager module acts as a wrapper to the command 'subscription-manager'. The subscription-manager utility allows users to manage RHN registration, subscription and yum repositories from the Red Hat Entitlement platform. Currently, this module supports the following sub-commands: * config * [un]register * subscribe
James Laska committed
-
- 04 Jun, 2013 1 commit
-
-
y-p committed
-
- 03 Jun, 2013 1 commit
-
-
y-p committed
-