Fix path for cp.push

This commit is contained in:
Erik Johnson 2014-09-11 12:07:00 -05:00
parent 8c89d7e193
commit 12ca973f10

View file

@ -329,7 +329,7 @@ def download_packages(options):
cmds = [
('salt {{0}} archive.tar czf {0}.tar.gz sources=\'*.*\' cwd={0}'
.format(options.package_dir)),
'salt {{0}} cp.push {0}.gz'.format(options.package_dir),
'salt {{0}} cp.push {0}.tar.gz'.format(options.package_dir),
('tar -C {{2}} -xzf /var/cache/salt/master/minions/{{1}}{0}.gz'
.format(options.package_dir)),
]