copy 4.95 KB
Newer Older
1
#!/usr/bin/python
2
# -*- coding: utf-8 -*-
3

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# (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/>.

21
import os
22
import shutil
23
import time
24

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
DOCUMENTATION = '''
---
module: copy
short_description: Copies files to remote locations.
description:
     - The M(copy) module copies a file on the local box to remote locations.
options:
  src:
    description:
      - Local path to a file to copy to the remote server; can be absolute or relative.
    required: true
    default: null
    aliases: []
  dest:
    description:
      - Remote absolute path where the file should be copied to.
    required: true
    default: null
  backup:
    description:
      - Create a backup file including the timestamp information so you can get
        the original file back if you somehow clobbered it incorrectly.
    version_added: "0.7"
    required: false
    choices: [ "yes", "no" ]
    default: "no"
  others:
    description:
      - all arguments accepted by the M(file) module also work here
    required: false
examples:
56
   - code: "copy: src=/srv/myfiles/foo.conf dest=/etc/foo.conf owner=foo group=foo mode=0644"
57
     description: "Example from Ansible Playbooks"
58
   - code: "copy: src=/mine/ntp.conf dest=/etc/ntp.conf owner=root group=root mode=644 backup=yes"
59 60 61 62
     description: "Copy a new C(ntp.conf) file into place, backing up the original if it differs from the copied version"
author: Michael DeHaan
'''

63 64 65
def main():

    module = AnsibleModule(
66
        # not checking because of daisy chain to file module
67 68
        argument_spec = dict(
            src=dict(required=True),
69 70
            dest=dict(required=True),
            backup=dict(default=False, choices=BOOLEANS),
71 72
        ),
        add_file_common_args=True
73
    )
74 75 76

    src  = os.path.expanduser(module.params['src'])
    dest = os.path.expanduser(module.params['dest'])
77
    backup = module.boolean(module.params.get('backup', False))
78 79
    file_args = module.load_file_common_arguments(module.params)    

80 81 82 83 84 85 86 87 88 89 90 91 92
    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))
93
        if (os.path.isdir(dest)):
94 95
            basename = os.path.basename(src)
            dest = os.path.join(dest, basename)
96 97
        md5sum_dest = module.md5(dest)
    else:
98 99
        if not os.path.exists(os.path.dirname(dest)):
            module.fail_json(msg="Destination directory %s does not exist" % (os.path.dirname(dest)))
100 101 102
        if not os.access(os.path.dirname(dest), os.W_OK):
            module.fail_json(msg="Destination %s not writable" % (os.path.dirname(dest)))

103
    backup_file = None
104
    if md5sum_src != md5sum_dest or os.path.islink(dest):
105
        try:
106
            if backup:
107
                if os.path.exists(dest):
108
                    backup_file = module.backup_local(dest)
109 110 111 112
            # allow for conversion from symlink.
            if os.path.islink(dest):
                os.unlink(dest)
                open(dest, 'w').close()
113 114
            #TODO:pid + epoch should avoid most collisions, hostname/mac for those using nfs?
            # might be an issue with exceeding path length
115
            dest_tmp = "%s.%s.%s.tmp" % (dest,os.getpid(),time.time())
116
            shutil.copyfile(src, dest_tmp)
117
            module.atomic_replace(dest_tmp, dest)
118
        except shutil.Error:
119
            module.fail_json(msg="failed to copy: %s and %s are the same" % (src, dest))
120
        except IOError:
121
            module.fail_json(msg="failed to copy: %s to %s" % (src, dest))
122 123 124 125
        changed = True
    else:
        changed = False

126 127 128
    res_args = dict(
        dest = dest, src = src, md5sum = md5sum_src, changed = changed
    )
129 130
    if backup_file:
        res_args['backup_file'] = backup_file
131 132 133 134 135

    module.params['dest'] = dest
    file_args = module.load_file_common_arguments(module.params)
    res_args['changed'] = module.set_file_attributes_if_different(file_args, res_args['changed'])

136
    module.exit_json(**res_args)
137 138 139 140

# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
main()