mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 16:34:32 +01:00
14 lines
309 B
Go
14 lines
309 B
Go
package pruning
|
|
|
|
type KeepNotReplicated struct{}
|
|
|
|
func (*KeepNotReplicated) KeepRule(snaps []Snapshot) (destroyList []Snapshot) {
|
|
return filterSnapList(snaps, func(snapshot Snapshot) bool {
|
|
return snapshot.Replicated()
|
|
})
|
|
}
|
|
|
|
func NewKeepNotReplicated() *KeepNotReplicated {
|
|
return &KeepNotReplicated{}
|
|
}
|