Sitefile   [plain text]



task :default => :build

desc 'deploy the site to the webserver'
task :deploy => [:build, 'deploy:rsync']

SITE.host = 'dcerpc.macosforge.org'
SITE.remote_dir = '/www/hosts/www.dcerpc.org/'
SITE.rsync_args = ['--archive', '--no-perms', '--no-times', '--checksum', '--stats']

# EOF