3cb51acd78
Could have used shutil.copy rather than shutil.copyfile, but this implementation preserves the md5 comparison to avoid unnecessary copies
71 lines
2.4 KiB
Python
Executable file
71 lines
2.4 KiB
Python
Executable file
#!/usr/bin/python
|
|
|
|
# (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 os
|
|
import shutil
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
argument_spec = dict(
|
|
src=dict(required=True),
|
|
dest=dict(required=True)
|
|
)
|
|
)
|
|
|
|
src = os.path.expanduser(module.params['src'])
|
|
dest = os.path.expanduser(module.params['dest'])
|
|
|
|
if not os.path.exists(src):
|
|
module.fail_json(msg="Source %s failed to transfer" % (src))
|
|
if not os.access(src, os.R_OK):
|
|
module.fail_json(msg="Source %s not readable" % (src))
|
|
|
|
md5sum_src = module.md5(src)
|
|
md5sum_dest = None
|
|
|
|
if os.path.exists(dest):
|
|
if not os.access(dest, os.W_OK):
|
|
module.fail_json(msg="Destination %s not writable" % (dest))
|
|
if not os.access(dest, os.R_OK):
|
|
module.fail_json(msg="Destination %s not readable" % (dest))
|
|
# Allow dest to be directory without compromising md5 check
|
|
if (os.path.isdir(dest)):
|
|
dest = os.join(dest, os.path.basename(src))
|
|
md5sum_dest = module.md5(dest)
|
|
else:
|
|
if not os.access(os.path.dirname(dest), os.W_OK):
|
|
module.fail_json(msg="Destination %s not writable" % (os.path.dirname(dest)))
|
|
|
|
if md5sum_src != md5sum_dest:
|
|
try:
|
|
shutil.copyfile(src, dest)
|
|
except shutil.Error:
|
|
module.fail_json(msg="failed to copy: %s and %s are the same" % (src, dest))
|
|
except IOError:
|
|
module.fail_json(msg="failed to copy: %s to %s" % (src, dest))
|
|
changed = True
|
|
else:
|
|
changed = False
|
|
|
|
module.exit_json(dest=dest, src=src, md5sum=md5sum_src, changed=changed)
|
|
|
|
# this is magic, see lib/ansible/module_common.py
|
|
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
|
main()
|