Commit Graph

120 Commits (157b697a83708b323ddbb70be2bf4d16942ba345)

Author SHA1 Message Date
James Cammarata ae98a025bb Minor doc fixes for the pkgutil module 11 years ago
Alexander Winkler 59c7ef2afa Added module pkgutil 11 years ago
sjahl 4dd68c07a0 setting 0644 permissions on mkstemp file handles. Fixes issue #3857 11 years ago
James Cammarata 10a0f03cdc Cleaning up of apt_repository module and removing wget parts 11 years ago
Michael Vogt de404eac06 use either pycurl or wget to download from launchpad, also improve error message if neither is installed 11 years ago
Michael Vogt 5e56d42ed1 use pycurl instead of urllib2 when talking to launchpad to actually get SSL cert verification, see https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/915210 or CVE-2011-4407 for a previous similar issue in software-properties 11 years ago
James Cammarata 0958673574 Reverting version_added field in the apt_repository module 11 years ago
Alexander Saltanov ded947008a Replacement for apt_repository.
1. Debian Squeeze is supported out of box now.
2. Repository type "deb" or "deb-src" should be explicitly specified.
3. If a source had beed added it must be possible to remove it.
4. PPA can be only used against Ubuntu hosts.
11 years ago
James Cammarata 6feb4e3837 Fail apt package install when nothing is matched by the fnmatch pattern
Related to PR #3823
11 years ago
Michael Vogt 5c39c659e5 add support for fnmatch() style apt filenames
You can write a apt action like "- apt: pkg=apt*" with this package.
11 years ago
Abhijit Menon-Sen 1a90d01ba9 Fix some typos discovered during casual reading 11 years ago
Alan Grosskurth b950f9456a apt: Run remove commands noninteractively
I'm seeing ansible hang when trying to remove a package, and the hung
process is `whiptail` like in #2763. It looks like we only use
`APT_ENVVARS` and `DPKG_OPTIONS` for the `apt` commands in install()
and upgrade(). This change uses them in remove() as well, which fixes
the hang.
11 years ago
Michael DeHaan de14995b8c PEP8: fix spacing 11 years ago
Michael DeHaan 40e447fbd4 Merge pull request #3718 from hacosta/rpm_key
Add rpm_key module
11 years ago
Michael DeHaan caa825b618 Rename option to 'recurse' to make it consistent. Add version_added to docs. 11 years ago
Michael DeHaan 74cde56b60 Merge pull request #3636 from uggedal/pacman-remove-recursive
Pacman module: recursive remove support
11 years ago
Michael DeHaan 4f9d330242 Add version_added to new parameter. 11 years ago
Michael DeHaan 996dbb72eb Merge pull request #3662 from grosskur/apt-key-keyring-param
apt_key: Add 'keyring' parameter
11 years ago
Hector Acosta c62210ce37 Add rpm_key module
This module can be used to import public keys into your rpm database.

Signed-off-by: Hector Acosta <hector.acosta@gmail.com>
11 years ago
Alan Grosskurth 5ccc7e7277 apt_key: Add 'keyring' parameter
The apt-key command takes an optional --keyring parameter representing
the path to a specific GPG keyring to operate on. If it's not given,
the command operates on all keyring files, i.e., /etc/apt/trusted.gpg
and /etc/apt/trusted.gpg.d/*.gpg.

This change adds a 'keyring' parameter to the apt_key module and
propagates it down to the apt-key command line. The main use case this
supports is organizing keys for third-party repos into individual
keyrings in /etc/apt/trusted.gpg.d, rather than putting them all in
the default keyring.
12 years ago
Andreas Kaiser f2e3fa9508 Fix pkgin search (yielding wrong results under certain conditions, see inline comments). 12 years ago
Eivind Uggedal 35b918359b Pacman module: recursive remove support 12 years ago
Michael DeHaan a35370a766 Fix prev feature commit, Do not require aptitude to use apt commands in the apt module, only needed when upgrading. 12 years ago
Michael DeHaan 5e02759570 Merge pull request #3617 from dermute/devel
svr4pkg doesn't work on Sol10
12 years ago
Michael DeHaan 7961a81b3f Update docs to add version_added attribute. 12 years ago
Michael DeHaan 32b3c59bad Merge pull request #3400 from diko4096/patch-1
Update gem
12 years ago
Michael DeHaan e1167d6977 tweak indentation for 'make pep8' 12 years ago
Patrik Lundin 3f93367579 openbsd_pkg: Use ansible run_command().
This fixes an asterisk glob problem in get_package_state() where a file
in /root/ could cause shell expansion if it matched the package name.
The actual problem is solved by running with shell=False.
12 years ago
Michael DeHaan f4b1e426ea Merge pull request #3379 from serenecloud/devel
Return a friendly error message if aptitude isn't installed
12 years ago
Michael DeHaan 6aa1ecbc30 Merge pull request #3493 from eest/openbsd_pkg-fixes
openbsd_pkg corner case fixes
12 years ago
Michael DeHaan 0bd8935899 Merge pull request #3515 from neomantra/apt_repository
apt_repository: enhance documentation
12 years ago
Alexander Winkler 52321c1557 fixes ansible/ansible#3547 12 years ago
Michael DeHaan fa9635478b Fixing your YAML Seth :) 12 years ago
Seth Vidal 81940c8b11 add examples for yum: state=latest name=* 12 years ago
Seth Vidal 7216a2b169 add a '*' option for name to state=latest to do a global update 12 years ago
Evan Wies 01fc2b61dc apt_repository: enhance documentation 12 years ago
Patrik Lundin 1b08da26fd openbsd_pkg: some whitespace cleanup. 12 years ago
Patrik Lundin af52cd6ec1 openbsd_pkg: sync package_latest().
This diff syncs package_latest() with the changes to package_present().
I have not managed to figure out how to handle the cornercases where
stderr is set but the command has not failed, so leave a FIXME blob for
other adventurers.
12 years ago
Patrik Lundin 0e4e6e8a84 openbsd_pkg: Handle another pkg_add gotcha
* Add '-m' to pkg_add incovation to get access to the "packagename-1.0: ok"
  message.
* Watch for that message if we are about to fail because of stderr in
  package_present().
12 years ago
Patrik Lundin a67ea75dec openbsd_pkg: handle pkg_add quirks better.
This fixes a problem when trying to install a package with a specific version
number from a local directory and the local directory is checked after a remote
repository:

Error from http://ftp.eu.openbsd.org/pub/OpenBSD/[...]/packagename-1.0.tgz
ftp: Error retrieving file: 404 Not Found
packagename-1.0: ok
12 years ago
Felix Stuermer b5df29901f Use the force=yes option for apt upgrade actions 12 years ago
Seth Vidal d710201ecc - 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.
12 years ago
Dmitry Kolobaev 8745de11a6 Update gem
I've added ability to install gems in system-wide manner with --no-user-install options
12 years ago
Michael DeHaan ecc2b6e742 Styling: deprecation 12 years ago
Michael DeHaan 257d827c9e Styling: misc pep8 12 years ago
serenecloud a17ca862fb Return a friendly error message if aptitude isn't installed 12 years ago
Jack Kuan a07324c590 Fix the issue of easy_install ignoring virtualenv_site_packages=yes. 12 years ago
Michael DeHaan f3093cbb1a Fixup previous apt_key patch to enable file based modes to work. 12 years ago
James Laska 4311412b44 Correctly load up2date configuration
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.
12 years ago
Michael DeHaan 727cee509c Merge branch 'PR_add_chdir_to_pip' of git://github.com/y-p/ansible into devel
Conflicts:
	library/packaging/pip
12 years ago