Commit 900a717f authored by Rafael Monnerat's avatar Rafael Monnerat

slaprunner: Don't compress for local transferences

Use compress for local transference is just slow.
parent b73df2aa
...@@ -50,7 +50,7 @@ mode = 0644 ...@@ -50,7 +50,7 @@ mode = 0644
recipe = hexagonit.recipe.download recipe = hexagonit.recipe.download
url = ${:_profile_base_location_}/template/runner-import.sh.jinja2 url = ${:_profile_base_location_}/template/runner-import.sh.jinja2
download-only = true download-only = true
md5sum = b003f6a6963f7787948be85c3d479ccd md5sum = d64529e263d42b0b56e5fe3a976d18c9
filename = runner-import.sh.jinja2 filename = runner-import.sh.jinja2
mode = 0644 mode = 0644
...@@ -65,7 +65,7 @@ mode = 0644 ...@@ -65,7 +65,7 @@ mode = 0644
recipe = hexagonit.recipe.download recipe = hexagonit.recipe.download
url = ${:_profile_base_location_}/template/runner-export.sh.jinja2 url = ${:_profile_base_location_}/template/runner-export.sh.jinja2
download-only = true download-only = true
md5sum = 246167ed081027618ef127a6fffd13ed md5sum = e74a0cbda64182c7fdff42cc46f07a12
filename = runner-export.sh.jinja2 filename = runner-export.sh.jinja2
mode = 0644 mode = 0644
......
...@@ -11,7 +11,7 @@ sync_element () { ...@@ -11,7 +11,7 @@ sync_element () {
do do
cd $path; cd $path;
if [ -f $element ] || [ -d $element ]; then if [ -f $element ] || [ -d $element ]; then
{{ rsync_binary }} -avz --safe-links --delete $element $backup_path; {{ rsync_binary }} -av --safe-links --delete $element $backup_path;
fi fi
done done
} }
......
...@@ -9,7 +9,7 @@ restore_element () { ...@@ -9,7 +9,7 @@ restore_element () {
do do
cd $backup_path; cd $backup_path;
if [ -f $element ] || [ -d $element ]; then if [ -f $element ] || [ -d $element ]; then
{{ rsync_binary }} -avz --delete $backup_path/$element $restore_path; {{ rsync_binary }} -av --delete $backup_path/$element $restore_path;
fi fi
done done
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment