Created
March 28, 2016 20:27
-
-
Save jespernohr/85778d1f6f87f66a3262 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create variables for duplicity | |
export AZURE_ACCOUNT_NAME=storageaccount01 | |
export AZURE_ACCOUNT_KEY='KEYHERE' | |
export PASSPHRASE='NEWPRIVATEPASSWORDHERE' | |
# Run first full backup (next run will automaticaly be incremental) | |
duplicity full /testdata azure://storagecontainer001 | |
# Output -------------- | |
#Local and Remote metadata are synchronized, no sync needed. | |
#Last full backup date: none | |
#--------------[ Backup Statistics ]-------------- | |
#StartTime 1457285602.22 (Sun Mar 6 18:33:22 2016) | |
#EndTime 1457285621.97 (Sun Mar 6 18:33:41 2016) | |
#ElapsedTime 19.76 (19.76 seconds) | |
#SourceFiles 2 | |
#SourceFileSize 104857622 (100 MB) | |
#NewFiles 2 | |
#NewFileSize 104857622 (100 MB) | |
#DeletedFiles 0 | |
#ChangedFiles 0 | |
#ChangedFileSize 0 (0 bytes) | |
#ChangedDeltaSize 0 (0 bytes) | |
#DeltaEntries 2 | |
#RawDeltaSize 104857600 (100 MB) | |
#TotalDestinationSizeChange 105515962 (101 MB) | |
#Errors 0 | |
#------------------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment