Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
e4441210
Commit
e4441210
authored
Feb 09, 2013
by
shlomozippel
Committed by
Michael DeHaan
Feb 09, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge recursive file permission setting on directories
parent
8db504fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
library/ec2
+3
-3
library/file
+20
-1
No files found.
library/ec2
View file @
e4441210
...
...
@@ -133,7 +133,7 @@ def main():
image
=
dict
(
required
=
True
),
kernel
=
dict
(),
count
=
dict
(
default
=
'1'
),
monitoring
=
dict
(
choices
=
BOOLEANS
,
default
=
False
),
monitoring
=
dict
(
choices
=
BOOLEANS
,
default
=
False
),
ramdisk
=
dict
(),
wait
=
dict
(
choices
=
BOOLEANS
,
default
=
False
),
ec2_url
=
dict
(
aliases
=
[
'EC2_URL'
]),
...
...
@@ -177,8 +177,8 @@ def main():
try
:
res
=
ec2
.
run_instances
(
image
,
key_name
=
key_name
,
min_count
=
count
,
max_count
=
count
,
monitoring_enabled
=
monitoring
,
max_count
=
count
,
monitoring_enabled
=
monitoring
,
security_groups
=
[
group
],
instance_type
=
instance_type
,
kernel_id
=
kernel
,
...
...
library/file
View file @
e4441210
...
...
@@ -113,6 +113,12 @@ options:
description:
- accepts only C(default) as value. This will restore a file's SELinux context
in the policy. Does nothing if no default value is available.
recurse:
required: false
default: no
choices: [ "yes", "no" ]
description:
- recursively set the specified file attributes (applies only to state=directory)
examples:
- code: "file: path=/etc/foo.conf owner=foo group=foo mode=0644"
description: Example from Ansible Playbooks
...
...
@@ -133,6 +139,7 @@ def main():
argument_spec
=
dict
(
state
=
dict
(
choices
=
[
'file'
,
'directory'
,
'link'
,
'absent'
],
default
=
'file'
),
path
=
dict
(
aliases
=
[
'dest'
,
'name'
],
required
=
True
),
recurse
=
dict
(
default
=
'no'
,
choices
=
BOOLEANS
)
),
add_file_common_args
=
True
,
supports_check_mode
=
True
...
...
@@ -202,12 +209,24 @@ def main():
module
.
exit_json
(
path
=
path
,
changed
=
changed
)
elif
state
==
'directory'
:
if
prev_state
==
'absent'
:
os
.
makedirs
(
path
)
changed
=
True
changed
=
module
.
set_directory_attributes_if_different
(
file_args
,
changed
)
recurse
=
module
.
boolean
(
params
[
'recurse'
])
if
recurse
:
for
root
,
dirs
,
files
in
os
.
walk
(
file_args
[
'path'
]
):
for
dir
in
dirs
:
dirname
=
os
.
path
.
join
(
root
,
dir
)
tmp_file_args
=
file_args
.
copy
()
tmp_file_args
[
'path'
]
=
dirname
changed
=
module
.
set_directory_attributes_if_different
(
tmp_file_args
,
changed
)
for
file
in
files
:
filename
=
os
.
path
.
join
(
root
,
file
)
tmp_file_args
=
file_args
.
copy
()
tmp_file_args
[
'path'
]
=
filename
changed
=
module
.
set_file_attributes_if_different
(
tmp_file_args
,
changed
)
module
.
exit_json
(
path
=
path
,
changed
=
changed
)
elif
state
==
'link'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment