fix: use rsync passwd
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
surtur 2020-07-09 10:58:17 +02:00
parent ee75e2f5be
commit 7be4704325
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -24,18 +24,12 @@ steps:
environment:
OL:
from_secret: hugo_user
OL_K:
from_secret: hugo_k
OL_K_PUB:
from_secret: hugo_k_pub
OL_P:
from_secret: hugo_passwd
OL_D:
from_secret: hugo_dir
commands:
- printf %s "$OL_K" > ol_k
- printf %s "$OL_K_PUB" > ol_k.pub
- chmod -v 0600 ./ol_k
- chmod -v 0644 ./ol_k.pub
- rsync --rsh="ssh -v -i ol_k -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" -av --delete chown $OL public/ $OL@dotya.ml:$OL_D
- RSYNC_PASSWORD=$OL_P rsync --rsh="ssh -v -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o PreferredAuthentications=password" -av --delete chown $OL public/ $OL@dotya.ml:$OL_D
---