Git Product home page Git Product logo

snaps's Introduction

Snaps

A simple multi-threaded command line tool for creating scheduled snapshots for DigitalOcean

About

Build project

cd <path to Snaps.sln>
dotnet build -c Release

Create alias

nano ~/.bashrc
alias snaps="dotnet /xxx/xxx/Snaps.dll>"

Usage

Set API token

snaps settings -t <Your DigitanlOcean API token>

Set max parallel tasks

snaps settings -mc <numebr> #Max degree of concurrency for create snapshot (default 5)

Create snapshot for droplets

snaps list -d # Get your list droplets
snaps snapshot <droplet ids> -d # Create a snapshot for droplets

For example:

snaps list -d
snaps snapshot 1 2 3 4 -d

Create snapshot for volumes

snaps list -v # Get your list volumes
snaps snapshot <volume ids> -v # Create a snapshot for volumes

For example:

snaps list -v
snaps snapshot 1 2 3 4 -v
Create cron job
crontab -e
* * * * * snaps snapshot <droplet ids> -d # Create a snapshot for droplets
* * * * * snaps snapshot <volume ids> -v # Create a snapshot for volumes
Create cron job from a file
snaps list -d -o /home/dproplets.csv # Export droplet ids to a file
snaps list -v -o /home/volumes.csv # Export volume ids to a file
crontab -e
* * * * * snaps snapshot -d -f /home/dproplets.csv # Import droplet ids from a file
* * * * * snaps snapshot -v -f /home/dproplets.csv # Import volume ids from a file

Built With

References

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.