Commit Graph

22653 Commits (e6ffb6085517481153609927bc3d99e6561ad97f)
 

Author SHA1 Message Date
Lars Kellogg-Stedman 562341049e docker: fix parsing of docker __version__ string
If `docker.__version__` contains non-digit characters, such as:

    >>> import docker
    >>> docker.__version__
    '1.4.0-dev'

Then `get_docker_py_versioninfo` will fail with:

    ValueError: invalid literal for int() with base 10: '0-de'

This patch corrects the parsing of the version string so that
`get_docker_py_versioninfo` in this example would return:

    (1, 4, 0, '-dev')
8 years ago
Mike Putnam 9623cd570c Add missing GPLv3 License header
Fixes #1643
8 years ago
Ash Caire 682bf34a43 add headers param to s3 uploads 8 years ago
Dan 5b4e7c797f Added header support
Added the ability to pass custom http headers to the fetch_url method.
8 years ago
KIKUCHI Koichiro dab7305d3b Fix service enabled check failure on FreeBSD 8 years ago
Sébastien Gross 0fd3ece053 Allow '*' as empty password.
If `password` is defined as `*` `useradd` or `usermod` returns an error:

    msg: usermod: Invalid password: `*'

This works very well on Linux host to not define any password for a
user (mainly useful if your setup is only based on SSH keys for
auth). On OpenBSD this does not work, so we have to ignore the encrypted
password parameter if it defined as `*`.
8 years ago
Andrey Trubachev b93633d7c2 Fix python-2.4 compatibility 8 years ago
Andrey Trubachev c55187ff42 Fix 'wait_for' doesn't work with ipv6only host 8 years ago
khassen 8b60dd349d Use the common/shared MD5 function. 8 years ago
Brian Coca f15ce1433a added version_added to body_format in uri 8 years ago
fti7 581ce7dd32 mount: Support for Check-Mode 8 years ago
Greg DeKoenigsberg ffb1cab213 Add new policy guidelines for Core 8 years ago
Johan Haals 6a9a4d905a ensures API compatibility for read_only containers 8 years ago
Guilherme Carlos aaac05c96c Fix login_user on mysql_user
`login_username` was provided but `login_user` is the correct option
8 years ago
Toshio Kuratomi 55271467d4 Remove validate_certs as the url is not user settable so we always want to validate the certificate 8 years ago
Artur Cygan d71b1444a9 Update route53.py
Fix typos
8 years ago
Chris Church d8f5a34d85 Save user after creating before trying to read/set other properties. Fixes #1241 8 years ago
Johan Haals c88feaff7e changed version_added for read_only param
this feature will be released in 2.0
8 years ago
Baraa Basata 63a619fbae Fix iam_policy example 8 years ago
Will Thames e5d96dc934 Correct handling of empty role_attr_flags
role_attr_flags is the empty string by default, not None.
8 years ago
Yuhui Huang 621b396bd9 Checking pip uninstall output in both stdout and stderr 8 years ago
Johan Haals 6231a9d52f Added support for --read-only Docker containers
Adds support for mounting the container's root filesystem as read only.
8 years ago
Constantin 7a7b8b913a Added additional stat output values
Included in the output as well:
 - file extension
 - file attributes
 - file owner
 - creation, last access and last write timestamps (in UNIX format)
8 years ago
Jeff Widman 70b3290a3b Move validate command into doc fragment and fix a few typos 8 years ago
Chris AtLee e7af5d2384 Add support for 'update' parameter to hg module 8 years ago
Jesse Sandberg 807feb3ac4 Validate variable, return only the found variable value instead of tuple
Docs imply the mysql_variables is used to operate a single variable therefore
- fail before making any db connections if variable is not set
- validate chars for mysql variable name with re.match(^[a-z0-9_]+)
- use "SHOW VARIABLE WHERE Variable_name" instead of LIKE search
- getvariable() returns only the value or None if variable is not found
- the module returns only the found variable value instead of tuple for easier operation eg. as registere variable in tasks
8 years ago
sysadmin75 9bd58bd224 Fix to revoke privileges for mysql user = '' Issue #9848 8 years ago
Christian Hammerl 426ec96ea5 docker: add support to add/drop capabilities 8 years ago
Brian Coca 9b38e47d70 added rickmendes as maintainer 8 years ago
Brian Coca 1976ed931a minor doc fixes to docker_user 8 years ago
Brian Coca b62a6f01ab added version_Added for new signal option in docker module 8 years ago
Brian Coca 723a48ca73 added versionadded to new option in pip module 8 years ago
Brian Coca 07fedaa03a corrected v ersion added 8 years ago
ayush f46daacf67 Updated doc strings so each character isn't considered a line 8 years ago
Toshio Kuratomi 8eba30b488 Deprecated _ec2_ami_search now verifies SSL certificates 8 years ago
Daniel Kerwin 277065a302 Too late for 1.8 8 years ago
Daniel Kerwin 3a68101fa3 Switch to _cap_ver_req and add cpu_set to create_containers 8 years ago
Alan Scherger 861d260b6c fix docs; only delete network if fwname is not provided 8 years ago
HelenaTian 1b614172f5 Update gce.py to correctly handle propagated metadata type from a mother template
My project is using Ansible to automate cloud build process. Ansible has a core module gce.py for managing GCE instances.
  We've come across a use case that's not yet supported - when executing ansible-playbook, if a child template is included, then metadata which is defined in and propagated from the mother template is treated as string type and not parsed correctly(which instead is dictionary type), and triggers release flow failure.
   We currently put some fix by explicitly casting metadata to string type in our own branch, but would like to contribute the fix to Ansible so that everyone onboarding GCE and using Ansible for release management could benefit from it, or hear owner's opinion on fixing the issue if there's a better fix in owner's mind:)
8 years ago
Petros Moisiadis 68ef885e71 make migrate command idempotent with django built-in migrations
Django since version 1.7 has built-in migrations, so no need to have south installed with recent django versions. The 'migrate' command works with built-in migrations without any change, but the output is different than the output produced by south, which breaks idempotence. This commit fixes this.
8 years ago
nemunaire f37510ebaa Add optional signal parameter when killing docker container 8 years ago
Isaac Simmons 07ccd3c86b Handle ini file properties that contain interpolation errors in the initial values 8 years ago
Wouter Bolsterlee 3d7e3e3c3d Add a virtualenv_python argument to the pip module
This allows specifying the Python version to use when creating the
virtualenv. See issue #586.
8 years ago
Wouter Bolsterlee 5a0157a4f2 A few coding style cleanups 8 years ago
Wouter Bolsterlee e8a0b8b8ae Fix typo in `version_added` field. 8 years ago
Daniel Kerwin 5b029bde98 Renamed to cpu_set 8 years ago
Daniel Kerwin 940baa92a6 Add support for cpusets. Requires docker-py >= 0.6.0 8 years ago
Brian Coca 87c8d016dc added version_Added to get_url's force_basic_auth 8 years ago
Patrik Lundin 88881415e9 synchronize: add flag for verifying target host.
Add the possibility to verify the target host using a "verify_host"
flag. It is disabled by default to not change the module behaviour.
8 years ago
Brian Coca 7a6c8251dd prevent usless assignment of home 8 years ago