2012-03-16 02:53:14 +01:00
#!/usr/bin/python
2012-08-03 03:29:10 +02:00
# -*- coding: utf-8 -*-
2012-03-16 02:53:14 +01:00
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
import shutil
import stat
import grp
import pwd
2012-04-12 19:33:10 +02:00
try:
import selinux
HAVE_SELINUX=True
except ImportError:
HAVE_SELINUX=False
2012-03-16 02:53:14 +01:00
2012-09-19 16:09:26 +02:00
DOCUMENTATION = '''
---
module: file
2013-11-19 00:55:49 +01:00
version_added: "historical"
2012-09-19 16:09:26 +02:00
short_description: Sets attributes of files
description:
- Sets attributes of files, symlinks, and directories, or removes
files/symlinks/directories. Many other modules support the same options as
2012-11-22 07:23:10 +01:00
the M(file) module - including M(copy), M(template), and M(assemble).
2012-09-19 16:09:26 +02:00
options:
2013-07-21 00:08:42 +02:00
path:
2012-09-28 03:06:31 +02:00
description:
2013-08-12 19:17:34 +02:00
- 'defines the file being managed, unless when used with C(state=link), and then sets the destination to create a symbolic link to using I(src). Aliases: I(dest), I(name)'
2012-09-28 03:06:31 +02:00
required: true
default: []
2013-07-21 00:08:42 +02:00
aliases: ['dest', 'name']
2012-09-28 03:06:31 +02:00
state:
description:
2012-10-01 09:18:54 +02:00
- If C(directory), all immediate subdirectories will be created if they
do not exist. If C(file), the file will NOT be created if it does not
exist, see the M(copy) or M(template) module if you want that behavior.
2013-06-15 17:14:34 +02:00
If C(link), the symbolic link will be created or changed. Use C(hard)
for hardlinks. If C(absent), directories will be recursively deleted,
2013-10-04 14:45:05 +02:00
and files or symlinks will be unlinked. If C(touch) (new in 1.4), an empty file will
2013-09-22 16:16:07 +02:00
be created if the c(dest) does not exist, while an existing file or
directory will receive updated file access and modification times (similar
to the way `touch` works from the command line).
2012-09-28 03:06:31 +02:00
required: false
default: file
2013-09-22 16:16:07 +02:00
choices: [ file, link, directory, hard, touch, absent ]
2012-09-28 03:06:31 +02:00
mode:
2012-10-01 09:18:54 +02:00
required: false
default: null
choices: []
description:
2012-11-21 18:49:30 +01:00
- mode the file or directory should be, such as 0644 as would be fed to I(chmod)
2012-10-01 09:18:54 +02:00
owner:
required: false
default: null
choices: []
description:
- name of the user that should own the file/directory, as would be fed to I(chown)
group:
required: false
default: null
choices: []
description:
- name of the group that should own the file/directory, as would be fed to I(chown)
src:
required: false
default: null
choices: []
description:
2013-11-07 23:02:34 +01:00
- path of the file to link to (applies only to C(state=link)). Will accept absolute,
relative and nonexisting paths. Relative paths are not expanded.
2012-10-01 09:18:54 +02:00
seuser:
required: false
default: null
choices: []
description:
- user part of SELinux file context. Will default to system policy, if
applicable. If set to C(_default), it will use the C(user) portion of the
2012-11-21 18:49:30 +01:00
policy if available
2012-10-01 09:18:54 +02:00
serole:
required: false
default: null
choices: []
description:
- role part of SELinux file context, C(_default) feature works as for I(seuser).
setype:
required: false
default: null
choices: []
description:
- type part of SELinux file context, C(_default) feature works as for I(seuser).
selevel:
required: false
default: "s0"
choices: []
description:
- level part of the SELinux file context. This is the MLS/MCS attribute,
sometimes known as the C(range). C(_default) feature works as for
I(seuser).
2013-02-09 18:01:11 +01:00
recurse:
required: false
2013-03-12 13:18:12 +01:00
default: "no"
2013-02-09 18:01:11 +01:00
choices: [ "yes", "no" ]
2013-02-17 18:48:17 +01:00
version_added: "1.1"
2013-02-09 18:01:11 +01:00
description:
- recursively set the specified file attributes (applies only to state=directory)
2013-06-04 12:06:08 +02:00
force:
required: false
default: "no"
2013-06-12 07:36:43 +02:00
choices: [ "yes", "no" ]
2013-06-04 12:06:08 +02:00
description:
2013-07-01 12:18:07 +02:00
- 'force the creation of the symlinks in two cases: the source file does
2013-06-04 12:06:08 +02:00
not exist (but will appear later); the destination exists and a file (so, we need to unlink the
2013-07-21 00:08:42 +02:00
"path" file and create symlink to the "src" file in place of it).'
2012-09-19 16:09:26 +02:00
notes:
- See also M(copy), M(template), M(assemble)
requirements: [ ]
2012-10-01 09:18:54 +02:00
author: Michael DeHaan
2012-09-19 16:09:26 +02:00
'''
2013-06-14 11:53:43 +02:00
EXAMPLES = '''
2013-07-21 00:08:42 +02:00
- file: path=/etc/foo.conf owner=foo group=foo mode=0644
2013-06-14 11:53:43 +02:00
- file: src=/file/to/link/to dest=/path/to/symlink owner=foo group=foo state=link
'''
2012-07-31 03:50:32 +02:00
def main():
2012-08-11 18:35:58 +02:00
# FIXME: pass this around, should not use global
2012-07-31 03:50:32 +02:00
global module
2012-08-11 18:35:58 +02:00
2012-08-02 01:42:31 +02:00
module = AnsibleModule(
2012-07-31 03:50:32 +02:00
argument_spec = dict(
2013-11-01 14:31:32 +01:00
state = dict(choices=['file','directory','link','hard','touch','absent'], default=None),
2013-07-21 00:08:42 +02:00
path = dict(aliases=['dest', 'name'], required=True),
2013-10-14 21:10:27 +02:00
original_basename = dict(required=False), # Internal use only, for recursive ops
2013-02-27 02:57:36 +01:00
recurse = dict(default='no', type='bool'),
2013-05-30 12:53:24 +02:00
force = dict(required=False,default=False,type='bool'),
2013-03-27 04:12:56 +01:00
diff_peek = dict(default=None),
validate = dict(required=False, default=None),
2012-10-21 04:51:36 +02:00
),
2013-02-04 01:46:25 +01:00
add_file_common_args=True,
supports_check_mode=True
2012-07-31 03:50:32 +02:00
)
params = module.params
state = params['state']
2013-05-30 12:53:24 +02:00
force = params['force']
2013-07-21 00:08:42 +02:00
params['path'] = path = os.path.expanduser(params['path'])
2012-10-13 02:07:05 +02:00
2013-02-25 23:32:52 +01:00
# short-circuit for diff_peek
if params.get('diff_peek', None) is not None:
appears_binary = False
try:
2013-07-21 00:08:42 +02:00
f = open(path)
2013-02-25 23:32:52 +01:00
b = f.read(8192)
f.close()
if b.find("\x00") != -1:
appears_binary = True
except:
pass
2013-07-21 00:08:42 +02:00
module.exit_json(path=path, changed=False, appears_binary=appears_binary)
2013-02-25 23:32:52 +01:00
2013-11-01 14:31:32 +01:00
prev_state = 'absent'
if os.path.lexists(path):
if os.path.islink(path):
prev_state = 'link'
elif os.path.isdir(path):
prev_state = 'directory'
elif os.stat(path).st_nlink > 1:
prev_state = 'hard'
else:
# could be many other things, but defaulting to file
prev_state = 'file'
if prev_state is not None and state is None:
2013-11-13 00:17:20 +01:00
# set state to current type of file
state = prev_state
2013-11-01 14:31:32 +01:00
elif state is None:
# set default state to file
state = 'file'
2012-10-13 02:07:05 +02:00
# source is both the source of a symlink or an informational passing of the src for a template module
# or copy module, even if this module never uses it, it is needed to key off some things
2012-10-21 04:51:36 +02:00
src = params.get('src', None)
2012-07-31 03:50:32 +02:00
if src:
src = os.path.expanduser(src)
2013-10-13 07:22:53 +02:00
if src is not None and os.path.isdir(path) and state not in ["link", "absent"]:
2013-10-14 21:10:27 +02:00
if params['original_basename']:
basename = params['original_basename']
else:
basename = os.path.basename(src)
params['path'] = path = os.path.join(path, basename)
2012-10-13 02:07:05 +02:00
2012-10-21 04:51:36 +02:00
file_args = module.load_file_common_arguments(params)
2012-07-31 03:50:32 +02:00
2013-07-21 00:08:42 +02:00
if state in ['link','hard'] and (src is None or path is None):
2013-06-15 17:14:34 +02:00
module.fail_json(msg='src and dest are required for creating links')
2013-07-21 00:08:42 +02:00
elif path is None:
2012-10-21 04:51:36 +02:00
module.fail_json(msg='path is required')
2012-07-31 03:50:32 +02:00
changed = False
2013-10-12 03:56:14 +02:00
recurse = params['recurse']
if recurse and state == 'file' and prev_state == 'directory':
state = 'directory'
2012-07-31 03:50:32 +02:00
if prev_state != 'absent' and state == 'absent':
try:
if prev_state == 'directory':
2013-07-21 00:08:42 +02:00
if os.path.islink(path):
2013-05-11 21:04:42 +02:00
if module.check_mode:
module.exit_json(changed=True)
2013-07-21 00:08:42 +02:00
os.unlink(path)
2012-07-31 03:50:32 +02:00
else:
2012-10-21 04:51:36 +02:00
try:
2013-05-11 21:04:42 +02:00
if module.check_mode:
module.exit_json(changed=True)
2013-07-21 00:08:42 +02:00
shutil.rmtree(path, ignore_errors=False)
2013-12-04 13:13:49 +01:00
except Exception, e:
2013-12-13 21:34:02 +01:00
module.fail_json(msg="rmtree failed: %s" % str(e))
2012-07-31 03:50:32 +02:00
else:
2013-04-26 03:33:47 +02:00
if module.check_mode:
module.exit_json(changed=True)
2013-07-21 00:08:42 +02:00
os.unlink(path)
2012-07-31 03:50:32 +02:00
except Exception, e:
2013-07-21 00:08:42 +02:00
module.fail_json(path=path, msg=str(e))
module.exit_json(path=path, changed=True)
2012-03-16 02:53:14 +01:00
2012-10-17 00:14:42 +02:00
if prev_state != 'absent' and prev_state != state:
2013-10-27 16:50:52 +01:00
if not (force and (prev_state == 'file' or prev_state == 'directory') and state == 'link') and state != 'touch':
2013-07-21 00:08:42 +02:00
module.fail_json(path=path, msg='refusing to convert between %s and %s for %s' % (prev_state, state, src))
2012-03-16 02:53:14 +01:00
2012-07-31 03:50:32 +02:00
if prev_state == 'absent' and state == 'absent':
2013-07-21 00:08:42 +02:00
module.exit_json(path=path, changed=False)
2012-03-16 02:53:14 +01:00
2012-07-31 03:50:32 +02:00
if state == 'file':
2012-08-07 02:07:02 +02:00
2012-09-19 03:02:16 +02:00
if prev_state != 'file':
2013-07-21 00:08:42 +02:00
module.fail_json(path=path, msg='file (%s) does not exist, use copy or template module to create' % path)
2012-03-16 02:53:14 +01:00
2012-10-21 04:51:36 +02:00
changed = module.set_file_attributes_if_different(file_args, changed)
2013-07-21 00:08:42 +02:00
module.exit_json(path=path, changed=changed)
2012-03-16 02:53:14 +01:00
2012-07-31 03:50:32 +02:00
elif state == 'directory':
if prev_state == 'absent':
2013-04-26 03:33:47 +02:00
if module.check_mode:
module.exit_json(changed=True)
2013-07-21 00:08:42 +02:00
os.makedirs(path)
2012-07-31 03:50:32 +02:00
changed = True
2012-08-07 02:07:02 +02:00
2012-10-21 04:51:36 +02:00
changed = module.set_directory_attributes_if_different(file_args, changed)
2013-02-09 18:01:11 +01:00
if recurse:
2013-07-21 00:08:42 +02:00
for root,dirs,files in os.walk( file_args['path'] ):
2013-02-09 18:01:11 +01:00
for dir in dirs:
dirname=os.path.join(root,dir)
tmp_file_args = file_args.copy()
2013-07-21 00:08:42 +02:00
tmp_file_args['path']=dirname
2013-02-09 18:01:11 +01:00
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()
2013-07-21 00:08:42 +02:00
tmp_file_args['path']=filename
2013-02-09 18:01:11 +01:00
changed = module.set_file_attributes_if_different(tmp_file_args, changed)
2013-07-21 00:08:42 +02:00
module.exit_json(path=path, changed=changed)
2012-03-16 02:53:14 +01:00
2013-06-15 17:14:34 +02:00
elif state in ['link','hard']:
2012-08-07 02:07:02 +02:00
2013-11-04 10:37:36 +01:00
if state == 'hard':
if os.path.isabs(src):
abs_src = src
else:
module.fail_json(msg="absolute paths are required")
2013-05-30 13:05:10 +02:00
2013-11-04 10:37:36 +01:00
if not os.path.exists(abs_src) and not force:
module.fail_json(path=path, src=src, msg='src file does not exist')
2012-08-07 02:07:02 +02:00
2012-07-31 03:50:32 +02:00
if prev_state == 'absent':
changed = True
elif prev_state == 'link':
2013-07-21 00:08:42 +02:00
old_src = os.readlink(path)
2012-07-31 03:50:32 +02:00
if old_src != src:
2013-08-16 05:39:02 +02:00
changed = True
elif prev_state == 'hard':
if not (state == 'hard' and os.stat(path).st_ino == os.stat(src).st_ino):
if not force:
module.fail_json(dest=path, src=src, msg='Cannot link, different hard link exists at destination')
2012-09-19 03:02:16 +02:00
changed = True
2013-06-15 17:14:34 +02:00
elif prev_state == 'file':
2013-05-30 12:53:24 +02:00
if not force:
2013-07-21 00:08:42 +02:00
module.fail_json(dest=path, src=src, msg='Cannot link, file exists at destination')
2013-08-16 05:39:02 +02:00
changed = True
2012-07-31 03:50:32 +02:00
else:
2013-07-21 00:08:42 +02:00
module.fail_json(dest=path, src=src, msg='unexpected position reached')
2012-07-31 03:50:32 +02:00
2013-08-16 05:39:02 +02:00
if changed and not module.check_mode:
if prev_state != 'absent':
try:
os.unlink(path)
except OSError, e:
module.fail_json(path=path, msg='Error while removing existing target: %s' % str(e))
try:
if state == 'hard':
os.link(src,path)
else:
os.symlink(src, path)
except OSError, e:
module.fail_json(path=path, msg='Error while linking: %s' % str(e))
2012-04-02 01:10:23 +02:00
2013-08-16 05:39:02 +02:00
changed = module.set_file_attributes_if_different(file_args, changed)
2013-07-21 00:08:42 +02:00
module.exit_json(dest=path, src=src, changed=changed)
2012-04-02 01:10:23 +02:00
2013-09-22 16:16:07 +02:00
elif state == 'touch':
2013-09-22 12:53:49 +02:00
if module.check_mode:
module.exit_json(path=path, skipped=True)
2013-09-21 15:07:50 +02:00
if prev_state not in ['file', 'directory', 'absent']:
module.fail_json(msg='Cannot touch other than files and directories')
if prev_state != 'absent':
try:
os.utime(path, None)
except OSError, e:
module.fail_json(path=path, msg='Error while touching existing target: %s' % str(e))
else:
try:
open(path, 'w').close()
except OSError, e:
2013-09-22 16:16:07 +02:00
module.fail_json(path=path, msg='Error, could not touch target: %s' % str(e))
2013-09-22 12:54:24 +02:00
module.set_file_attributes_if_different(file_args, True)
2013-09-21 15:07:50 +02:00
module.exit_json(dest=path, changed=True)
2013-08-16 05:39:02 +02:00
else:
module.fail_json(path=path, msg='unexpected position reached')
2012-04-02 01:10:23 +02:00
2013-12-02 21:13:49 +01:00
# import module snippets
2013-12-02 21:11:23 +01:00
from ansible.module_utils.basic import *
2012-08-01 06:21:36 +02:00
main()
2012-03-16 02:53:14 +01:00