Giter Club home page Giter Club logo

Comments (2)

dtomilso avatar dtomilso commented on June 24, 2024

Would you mind pasting a copy of the script with the changes?
This is breaking for me when trying to run on Solaris 11.4 December 2020 SRU.

from zfs-scripts.

sigxcpu76 avatar sigxcpu76 commented on June 24, 2024

I've moved away from Illumos for 5 years now :)
I highly recommend a "keep the last N snaphots" pattern instead of deleting by date.

Nowadays I use the following script to cleanup by the above mentioned pattern.

#!/bin/bash

ROOT_DS=slow
KEEP=3

for i in $(zfs list -H -r $ROOT_DS -o name); do
	for s in $(zfs list -S creation -H -t snapshot -o name $i | tail -n +${KEEP}); do
		echo "Deleting $s"
		zfs destroy $s
	done
done

tail in SunOS may be different, so you need to test. That syntax is used to display the last lines except .
few($KEEP)

from zfs-scripts.

Related Issues (1)

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.