'; // Create a banner if we're not on the official docs site if (location.host == "docs.testing.ansible.com") { document.write('
'); } // Create a banner current_url_path = window.location.pathname; var important = false; var msg = '
'; if (startsWith(current_url_path, "/ansible-core/")) { msg += 'You are reading documentation for Ansible Core, which contains no plugins except for those in ansible.builtin. For documentation of the Ansible package, go to the latest documentation.'; } else if (startsWithOneOf(current_url_path, ["/ansible/latest/", "/ansible/8/"])) { /* temp extra banner to advertise something */ banner += extra_banner; msg += 'You are reading the latest (stable) community version of the Ansible documentation. For more detail on the difference between Ansible community projects and Red Hat supported products, refer to the Ansible community comparison with Red Hat Ansible Automation Platform. Red Hat also provides a Ansible Automation Platform Life Cycle page for subscriptions.'; } else if (startsWith(current_url_path, "/ansible/2.9/")) { msg += 'You are reading the latest Red Hat released version of the Ansible documentation. Community users can use this version, or select latest from the version selector to the left for the most recent community version.'; } else if (startsWith(current_url_path, "/ansible/devel/")) { /* temp extra banner to advertise something */ banner += extra_banner; msg += 'You are reading the devel version of the Ansible documentation - this version is not guaranteed stable. Use the version selection to the left if you want the latest (stable) released version.'; } else { msg += 'You are reading an older version of the Ansible documentation. Use the version selection to the left if you want the latest (stable) released version.'; /* temp extra banner to advertise something - this is for testing*/ banner += extra_banner; } msg += '
'; banner += important ? '
' : ''; banner += msg; banner += important ? '
' : ''; banner += '
Note
This module is part of ansible-core
and included in all Ansibleinstallations. In most cases, you can use the shortmodule namecopy
even without specifying the collections:
keyword.However, we recommend you use the FQCN for easy linking to themodule documentation and to avoid conflicting with other collections that may havethe same module name.
Synopsis
The
copy
module copies a file from the local or remote machine to a location on the remote machine.Use the ansible.builtin.fetch module to copy files from remote locations to the local box.
If you need variable interpolation in copied files, use the ansible.builtin.template module. Using a variable in the
content
field will result in unpredictable output.For Windows targets, use the ansible.windows.win_copy module instead.
Note
This module has a corresponding action plugin.
Parameters
Parameter | Comments |
---|---|
attributes aliases: attr string | The attributes the resulting filesystem object should have. To get supported flags look at the man page for chattr on the target system. This string should contain the attributes in the same order as the one displayed by lsattr. The |
backup boolean | Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly. Choices:
|
checksum string | SHA1 checksum of the file being transferred. Used to validate that the copy of the file was successful. If this is not provided, ansible will use the local calculated checksum of the src file. |
content string | When used instead of Works only when For advanced formatting or if |
decrypt boolean | This option controls the autodecryption of source files using vault. Choices:
|
dest path / required | Remote absolute path where the file should be copied to. If If If dest is a relative path, the starting directory is determined by the remote host. If |
directory_mode any | When doing a recursive copy set the mode for the directories. If this is not set we will use the system defaults. The mode is only set on directories which are newly created, and will not affect those that already existed. |
follow boolean | This flag indicates that filesystem links in the destination, if they exist, should be followed. Choices:
|
force boolean | Influence whether the remote file must always be replaced. If If Choices:
|
group string | Name of the group that should own the filesystem object, as would be fed to chown. When left unspecified, it uses the current group of the current user unless you are root, in which case it can preserve the previous ownership. |
local_follow boolean | This flag indicates that filesystem links in the source tree, if they exist, should be followed. Choices:
|
mode any | The permissions of the destination file or directory. For those used to As of Ansible 1.8, the mode may be specified as a symbolic mode (for example, As of Ansible 2.3, the mode may also be the special string
When doing a recursive copy, see also If If Specifying |
owner string | Name of the user that should own the filesystem object, as would be fed to chown. When left unspecified, it uses the current user unless you are root, in which case it can preserve the previous ownership. Specifying a numeric username will be assumed to be a user ID and not a username. Avoid numeric usernames to avoid this confusion. |
remote_src boolean | Influence whether If If
Autodecryption of files does not work when Choices:
|
selevel string | The level part of the SELinux filesystem object context. This is the MLS/MCS attribute, sometimes known as the When set to |
serole string | The role part of the SELinux filesystem object context. When set to |
setype string | The type part of the SELinux filesystem object context. When set to |
seuser string | The user part of the SELinux filesystem object context. By default it uses the When set to |
src path | Local path to a file to copy to the remote server. This can be absolute or relative. If path is a directory, it is copied recursively. In this case, if path ends with “/”, only inside contents of that directory are copied to destination. Otherwise, if it does not end with “/”, the directory itself with all contents is copied. This behavior is similar to the |
unsafe_writes boolean | Influence when to use atomic operation to prevent data corruption or inconsistent reads from the target filesystem object. By default this module uses atomic operations to prevent data corruption or inconsistent reads from the target filesystem objects, but sometimes systems are configured or just broken in ways that prevent this. One example is docker mounted filesystem objects, which cannot be updated atomically from inside the container and can only be written in an unsafe manner. This option allows Ansible to fall back to unsafe methods of updating filesystem objects when atomic operations fail (however, it doesn’t force Ansible to perform unsafe writes). IMPORTANT! Unsafe writes are subject to race conditions and can lead to data corruption. Choices:
|
validate string | The validation command to run before copying the updated file into the final destination. A temporary file path is used to validate, passed in through ‘%s’ which must be present as in the examples below. Also, the command is passed securely so shell features such as expansion and pipes will not work. For an example on how to handle more complex validation than what this option provides, see handling complex validation. |
Attributes
Attribute | Support | Description |
---|---|---|
action | Support: full | Indicates this has a corresponding action plugin so some parts of the options can be executed on the controller |
async | Support: none | Supports being used with the |
bypass_host_loop | Support: none | Forces a ‘global’ task that does not execute per host, this bypasses per host templating and serial, throttle and other loop considerations Conditionals will work as if This action will not work normally outside of lockstep strategies |
check_mode | Support: full | Can run in check_mode and return changed status prediction without modifying target |
diff_mode | Support: full | Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode |
platform | Platform:posix | Target OS/families that can be operated against |
safe_file_operations | Support: full | Uses Ansible’s strict file operation functions to ensure proper permissions and avoid data corruption |
vault | Support: full | Can automatically decrypt Ansible vaulted files |
Notes
Note
The ansible.builtin.copy module recursively copy facility does not scale to lots (>hundreds) of files.
See Also
See also
- ansible.builtin.assemble
Assemble configuration files from fragments.
- ansible.builtin.fetch
Fetch files from remote nodes.
- ansible.builtin.file
Manage files and file properties.
- ansible.builtin.template
Template a file out to a target host.
- ansible.posix.synchronize
A wrapper around rsync to make common tasks in your playbooks quick and easy.
- ansible.windows.win_copy
Copies files to remote locations on windows hosts.
Examples
- name: Copy file with owner and permissions ansible.builtin.copy: src: /srv/myfiles/foo.conf dest: /etc/foo.conf owner: foo group: foo mode: '0644'- name: Copy file with owner and permission, using symbolic representation ansible.builtin.copy: src: /srv/myfiles/foo.conf dest: /etc/foo.conf owner: foo group: foo mode: u=rw,g=r,o=r- name: Another symbolic mode example, adding some permissions and removing others ansible.builtin.copy: src: /srv/myfiles/foo.conf dest: /etc/foo.conf owner: foo group: foo mode: u+rw,g-wx,o-rwx- name: Copy a new "ntp.conf" file into place, backing up the original if it differs from the copied version ansible.builtin.copy: src: /mine/ntp.conf dest: /etc/ntp.conf owner: root group: root mode: '0644' backup: yes- name: Copy a new "sudoers" file into place, after passing validation with visudo ansible.builtin.copy: src: /mine/sudoers dest: /etc/sudoers validate: /usr/sbin/visudo -csf %s- name: Copy a "sudoers" file on the remote machine for editing ansible.builtin.copy: src: /etc/sudoers dest: /etc/sudoers.edit remote_src: yes validate: /usr/sbin/visudo -csf %s- name: Copy using inline content ansible.builtin.copy: content: '# This file was moved to /etc/other.conf' dest: /etc/mine.conf- name: If follow=yes, /path/to/file will be overwritten by contents of foo.conf ansible.builtin.copy: src: /etc/foo.conf dest: /path/to/link # link to /path/to/file follow: yes- name: If follow=no, /path/to/link will become a file and be overwritten by contents of foo.conf ansible.builtin.copy: src: /etc/foo.conf dest: /path/to/link # link to /path/to/file follow: no
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
---|---|
backup_file string | Name of backup file created. Returned: changed and if backup=yes Sample: |
checksum string | SHA1 checksum of the file after running copy. Returned: success Sample: |
dest string | Destination file/path. Returned: success Sample: |
gid integer | Group id of the file, after execution. Returned: success Sample: |
group string | Group of the file, after execution. Returned: success Sample: |
md5sum string | MD5 checksum of the file after running copy. Returned: when supported Sample: |
mode string | Permissions of the target, after execution. Returned: success Sample: |
owner string | Owner of the file, after execution. Returned: success Sample: |
size integer | Size of the target, after execution. Returned: success Sample: |
src string | Source file used for the copy on the target machine. Returned: changed Sample: |
state string | State of the target, after execution. Returned: success Sample: |
uid integer | Owner id of the file, after execution. Returned: success Sample: |
Authors
Ansible Core Team
Michael DeHaan
Collection links
Issue Tracker Repository (Sources) Communication