I have this script so far:
#!/bin/bash
# script to create digitalocean droplet snapshot using their CLI, doctl.
# Function to set variable for snapshot name as date/time of creation.
timestamp() {
NAME=$(date)
}
timestamp
doctl compute droplet-action snapshot --snapshot-name "$NAME" 80750079
The script works with the result being a droplet snapshot with the date/time of creation as the name. However, I need to keep only 12 snapshots.
Somehow I need to count the number of existing snapshots and when I have 12, delete the oldest and add a new one.
How can I achieve that?
I run the script every two hours.
Any help would be greatly appreciated!
Thanks!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
So this is the bashscript. Uses doctl to check how many snapshots exist, and when 24 exist, deletes the oldest one and creates the new one. Sends an log email to me with each new snapshot so I know it’s working. Repeats every hour. Maybe it’ll help someone. :)
BTW, I’ll post the script when completed.
I think that if you list your snapshots and split that result so that each result is a different item in an array you could do a for loop to count your results and if that number is over 12, delete the oldest.
Personally I would choose a more robust option than bash+doctl for this since it would be easier to deal with the snapshot results if you were using a library/class rather than a command line utility.