No more need for the fabfile, everything uses invoke now
This commit is contained in:
parent
83f09e634f
commit
1038cfe7dd
|
@ -1,13 +0,0 @@
|
||||||
from fabric.api import task, sudo, env
|
|
||||||
from fabric.contrib.project import rsync_project
|
|
||||||
|
|
||||||
|
|
||||||
@task
|
|
||||||
def upload_docs():
|
|
||||||
target = "/var/www/paramiko.org"
|
|
||||||
staging = "/tmp/paramiko_docs"
|
|
||||||
sudo("mkdir -p %s" % staging)
|
|
||||||
sudo("chown -R %s %s" % (env.user, staging))
|
|
||||||
sudo("rm -rf %s/*" % target)
|
|
||||||
rsync_project(local_dir='docs/', remote_dir=staging, delete=True)
|
|
||||||
sudo("cp -R %s/* %s/" % (staging, target))
|
|
Loading…
Reference in New Issue