1
2task :default => :build
3
4desc 'deploy the site to the webserver'
5task :deploy => [:build, 'deploy:rsync']
6
7SITE.host = 'dcerpc.org'
8SITE.remote_dir = '/www/hosts/www.dcerpc.org/'
9SITE.rsync_args = ['--archive', '--no-perms', '--no-times', '--checksum', '--stats']
10
11# EOF
12