2011-05-23 06:58:49 +00:00
|
|
|
===========
|
|
|
|
``salt-cp``
|
|
|
|
===========
|
|
|
|
|
|
|
|
Copy a file to a set of systems
|
|
|
|
|
|
|
|
Synopsis
|
|
|
|
========
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
salt-cp '*' [ options ] SOURCE DEST
|
|
|
|
|
|
|
|
salt-cp -E '.*' [ options ] SOURCE DEST
|
|
|
|
|
|
|
|
salt-cp -G 'os:Arch.*' [ options ] SOURCE DEST
|
|
|
|
|
|
|
|
Description
|
|
|
|
===========
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
Salt copy copies a local file out to all of the Salt minions matched by the
|
2011-05-23 06:58:49 +00:00
|
|
|
given target.
|
|
|
|
|
|
|
|
Options
|
|
|
|
=======
|
|
|
|
|
|
|
|
.. program:: salt-cp
|
|
|
|
|
|
|
|
.. option:: -h, --help
|
|
|
|
|
|
|
|
Print a usage message briefly summarizing these command-line options
|
|
|
|
|
|
|
|
.. option:: -t TIMEOUT, --timeout=TIMEOUT
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
The timeout in seconds to wait for replies from the Salt minions.
|
2011-05-23 06:58:49 +00:00
|
|
|
|
|
|
|
.. option:: -E, --pcre
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
The target expression will be interpreted as a PCRE regular expression
|
2011-05-23 06:58:49 +00:00
|
|
|
rather than a shell glob.
|
|
|
|
|
|
|
|
.. option:: -L, --list
|
|
|
|
|
2012-01-21 00:45:38 +00:00
|
|
|
The target expression will be interpreted as a comma delimited list,
|
2011-05-23 06:58:49 +00:00
|
|
|
example: server1.foo.bar,server2.foo.bar,example7.quo.qux
|
|
|
|
|
|
|
|
.. option:: -G, --grain
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
The target expression matches values returned by the Salt grains system on
|
2012-03-19 18:41:21 +00:00
|
|
|
the minions. The target expression is in the format of '<grain value>:<glob
|
|
|
|
expression>'; example: 'os:Arch*'
|
|
|
|
|
|
|
|
.. option:: --grain-pcre
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
The target expression matches values returned by the Salt grains system on
|
2012-01-16 23:36:59 +00:00
|
|
|
the minions. The target expression is in the format of '<grain value>:<pcre
|
|
|
|
regular expression>'; example: 'os:Arch.*'
|
2011-05-23 06:58:49 +00:00
|
|
|
|
2012-03-19 18:41:21 +00:00
|
|
|
.. option:: -R, --range
|
|
|
|
|
2012-03-20 04:16:15 +00:00
|
|
|
Instead of using shell globs to evaluate the target use a range expression
|
2012-03-19 18:41:21 +00:00
|
|
|
to identify targets. Range expressions look like %cluster.
|
|
|
|
|
|
|
|
Using the Range option requires that a range server is set up and the
|
|
|
|
location of the range server is referenced in the master configuration
|
|
|
|
file.
|
|
|
|
|
|
|
|
.. option:: -C, --compound
|
2011-05-23 06:58:49 +00:00
|
|
|
|
2012-03-19 18:41:21 +00:00
|
|
|
Utilize many target definitions to make the call very granular. This option
|
|
|
|
takes a group of targets separated by and or or. The default matcher is a
|
|
|
|
glob as usual, if something other than a glob is used preface it with the
|
|
|
|
letter denoting the type, example: 'webserv* and G@os:Debian or E@db*'
|
|
|
|
make sure that the compound target is encapsulated in quotes.
|
2011-05-23 06:58:49 +00:00
|
|
|
|
|
|
|
.. option:: -c CONFIG, --config=CONFIG
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
The location of the Salt master configuration file, the Salt master
|
2011-05-23 06:58:49 +00:00
|
|
|
settings are required to know where the connections are;
|
|
|
|
default=/etc/salt/master
|
2012-05-10 22:10:39 +00:00
|
|
|
|
|
|
|
See also
|
|
|
|
========
|
|
|
|
|
|
|
|
:manpage:`salt(1)`
|
|
|
|
:manpage:`salt-master(1)`
|
|
|
|
:manpage:`salt-minion(1)`
|