From cab378bff63abd640c7c076924d05ae8f42aa5a6 Mon Sep 17 00:00:00 2001 From: Achilleas Pipinellis Date: Mon, 17 Nov 2014 17:01:26 +0200 Subject: [PATCH 1/3] Add note about using version 1 of DigitalOcean API. --- cloud/digital_ocean/digital_ocean.py | 1 + cloud/digital_ocean/digital_ocean_domain.py | 1 + cloud/digital_ocean/digital_ocean_sshkey.py | 1 + 3 files changed, 3 insertions(+) diff --git a/cloud/digital_ocean/digital_ocean.py b/cloud/digital_ocean/digital_ocean.py index efebf5f1bcf..afa66f0b51f 100644 --- a/cloud/digital_ocean/digital_ocean.py +++ b/cloud/digital_ocean/digital_ocean.py @@ -96,6 +96,7 @@ options: notes: - Two environment variables can be used, DO_CLIENT_ID and DO_API_KEY. + - Version 1 of DigitalOcean API is used. requirements: [ dopy ] ''' diff --git a/cloud/digital_ocean/digital_ocean_domain.py b/cloud/digital_ocean/digital_ocean_domain.py index 1086a6bab16..b26d4e9f7f3 100644 --- a/cloud/digital_ocean/digital_ocean_domain.py +++ b/cloud/digital_ocean/digital_ocean_domain.py @@ -46,6 +46,7 @@ options: notes: - Two environment variables can be used, DO_CLIENT_ID and DO_API_KEY. + - Version 1 of DigitalOcean API is used. ''' diff --git a/cloud/digital_ocean/digital_ocean_sshkey.py b/cloud/digital_ocean/digital_ocean_sshkey.py index 69f32266b51..be75b42ce33 100644 --- a/cloud/digital_ocean/digital_ocean_sshkey.py +++ b/cloud/digital_ocean/digital_ocean_sshkey.py @@ -46,6 +46,7 @@ options: notes: - Two environment variables can be used, DO_CLIENT_ID and DO_API_KEY. + - Version 1 of DigitalOcean API is used. ''' From 3bd2b7c8aaaa83dd3a94d53073c7251effdb98f0 Mon Sep 17 00:00:00 2001 From: James Martin Date: Fri, 20 Mar 2015 14:59:34 -0400 Subject: [PATCH 2/3] Re-wording of feature. --- cloud/amazon/ec2_asg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/amazon/ec2_asg.py b/cloud/amazon/ec2_asg.py index 97d89d4c987..e040ad48067 100644 --- a/cloud/amazon/ec2_asg.py +++ b/cloud/amazon/ec2_asg.py @@ -116,7 +116,7 @@ options: version_added: "1.8" wait_for_instances: description: - - Wait for the ASG instances to be in a ready state before exiting. If instances are behind an ELB, it will wait until the instances are considered by the ELB. + - Wait for the ASG instances to be in a ready state before exiting. If instances are behind an ELB, it will wait until the ELB determines all instances have a lifecycle_state of "InService" and a health_status of "Healthy". version_added: "1.9" default: yes required: False From 515cd6666d5bb6c7e4b9e6b50968b772332c60c4 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 25 Mar 2015 08:33:19 -0700 Subject: [PATCH 3/3] Fix stat code to return name of group owning the file rather than name of group that the file's owner belongs to. Followup to #17 --- files/stat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/stat.py b/files/stat.py index fbf2d4cb8f6..ee3998f5f75 100644 --- a/files/stat.py +++ b/files/stat.py @@ -342,7 +342,7 @@ def main(): d['pw_name'] = pw.pw_name - grp_info = grp.getgrgid(pw.pw_gid) + grp_info = grp.getgrgid(st.st_gid) d['gr_name'] = grp_info.gr_name except: pass