mirror of
https://github.com/restic/restic.git
synced 2025-04-29 11:50:45 +00:00
Merge pull request #2959 from restic/keep-text
backup: Correct keep policy text
This commit is contained in:
commit
48d0ab5276
@ -25,7 +25,7 @@ type ExpirePolicy struct {
|
|||||||
func (e ExpirePolicy) String() (s string) {
|
func (e ExpirePolicy) String() (s string) {
|
||||||
var keeps []string
|
var keeps []string
|
||||||
if e.Last > 0 {
|
if e.Last > 0 {
|
||||||
keeps = append(keeps, fmt.Sprintf("%d snapshots", e.Last))
|
keeps = append(keeps, fmt.Sprintf("%d latest", e.Last))
|
||||||
}
|
}
|
||||||
if e.Hourly > 0 {
|
if e.Hourly > 0 {
|
||||||
keeps = append(keeps, fmt.Sprintf("%d hourly", e.Hourly))
|
keeps = append(keeps, fmt.Sprintf("%d hourly", e.Hourly))
|
||||||
@ -44,7 +44,7 @@ func (e ExpirePolicy) String() (s string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len(keeps) > 0 {
|
if len(keeps) > 0 {
|
||||||
s = fmt.Sprintf("keep the last %s snapshots", strings.Join(keeps, ", "))
|
s = fmt.Sprintf("keep %s snapshots", strings.Join(keeps, ", "))
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(e.Tags) > 0 {
|
if len(e.Tags) > 0 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user