Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
danhab99 committed Aug 19, 2023
1 parent b1965c3 commit 0fbd880
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Go utility for creating backups of large segments of your operating system to s3

Arch/Manjaro: `yay -S backup-brute-git`

Go module: `go install github.com/danhab99/backup-brute@1.0`
Go module: `go install github.com/danhab99/backup-brute@1.3`

## Usage

Expand All @@ -22,8 +22,12 @@ Usage of backup-brute:
Do full restore
-rm
Remove an archive interactively
-show-config
Print the config data
-size
Get size of backup on disk
-version
Print the version
```

## `backup.yaml`
Expand All @@ -50,7 +54,8 @@ age:
private: [GENERATED WHEN YOU DO YOUR FIRST BACKUP]
public: [GENERATED WHEN YOU DO YOUR FIRST BACKUP]

chunkSize: 10000000 # Size in bytes of the chunks that get uploaded to s3
ram:
chunkSize: "50MB"

includeDirs:
- /home
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"gopkg.in/yaml.v3"
)

const VERSION = "1.2"
const VERSION = "1.3"

func main() {
doBackup := flag.Bool("backup", false, "Do a full backup")
Expand Down

0 comments on commit 0fbd880

Please sign in to comment.