2015-09-28 19:06:09 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
var (
|
|
|
|
username = `` // The SSH user's name
|
|
|
|
password = `` // The user's password
|
|
|
|
serverAddrString = `` // The SSH server address
|
|
|
|
localDir = `` // The local directory
|
|
|
|
remoteDir = `` // The remote directory
|
|
|
|
supervised = true // Should the tool work supervised?
|
2015-09-30 08:51:22 +00:00
|
|
|
pushOnly = true // Pushes only local changes to the remote i.e. backup mode
|
2015-09-28 19:06:09 +00:00
|
|
|
)
|