No commit activity in last 3 years
No release in over 3 years
Simple backup tool
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

 Project Readme

BackItUp¶ ↑

Simple tool to easily configure the files and directories to copy to a local zip file and FTP (optional) to a remote host.

Install¶ ↑

Add GitHub to your gem sources if you haven’t already:

$ sudo gem sources -a gems.github.com Install the gem:

$ sudo gem install robinsp-backitup This should have installed the backitup command. Running

$ backitup …should print the usage instructions if everything is set up ok.

Usage ¶ ↑

Create a backup script looking something like this

# sample.backitup backup do file ‘/home/robin/backup.this.file’ dir “~/Desktop/drop-in-me-for-backup” destination_file “/tmp/backupfile”

ftp ‘host.domain.com’, ‘username’, ‘password’, :remote_dir => ‘backups’ end

Run backitup with your script file as argument

$ backitup sample.backitup