etienne-napoleone / goutte

💧 DigitalOcean snapshot automation
GNU General Public License v3.0
24 stars 1 forks source link

Rework config and per item retention #17

Closed etienne-napoleone closed 3 years ago

etienne-napoleone commented 4 years ago

close #16

anentropic commented 3 years ago
name = 'goutte-{}-{}-{}'.format(
        droplet.name,
        date.today().strftime('%Y%m%d'),
        uuid.uuid4().hex[:5])

if anyone's doing hourly snapshots it would be useful to have the time as well as the date in the snapshot name template

etienne-napoleone commented 3 years ago
name = 'goutte-{}-{}-{}'.format(
        droplet.name,
        date.today().strftime('%Y%m%d'),
        uuid.uuid4().hex[:5])

if anyone's doing hourly snapshots it would be useful to have the time as well as the date in the snapshot name template

I agree! I'm planning on doing v2 of goutte from scratch, current version was made quickly and is a bit wonky. I will close this PR in the meantime as it will not be implemented on v1