{"id":18352178,"url":"https://github.com/farmergreg/zfs-auto-snapshot","last_synced_at":"2025-08-09T02:11:50.787Z","repository":{"id":1836106,"uuid":"2760484","full_name":"farmergreg/zfs-auto-snapshot","owner":"farmergreg","description":"Quickly schedule rolling Hourly/Daily/Weekly/Monthly snapshots of ZFS file systems","archived":false,"fork":false,"pushed_at":"2019-08-29T15:22:56.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T00:46:46.652Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.gregd.org/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"backbone-paginator/backbone-pageable","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/farmergreg.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-11-12T06:07:02.000Z","updated_at":"2024-01-26T16:43:42.000Z","dependencies_parsed_at":"2022-09-12T17:52:08.677Z","dependency_job_id":null,"html_url":"https://github.com/farmergreg/zfs-auto-snapshot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/farmergreg/zfs-auto-snapshot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fzfs-auto-snapshot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fzfs-auto-snapshot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fzfs-auto-snapshot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fzfs-auto-snapshot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/farmergreg","download_url":"https://codeload.github.com/farmergreg/zfs-auto-snapshot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/farmergreg%2Fzfs-auto-snapshot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269518731,"owners_count":24430644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T21:35:11.170Z","updated_at":"2025-08-09T02:11:50.731Z","avatar_url":"https://github.com/farmergreg.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"ZAutoSnap Readme - Copyright (C) 2016 Greg Dietsche \u003cgreg@gregd.org\u003e\n\nOVERVIEW:\n\tZAutoSnap is a simple script that is meant to be used with cron\n\tto take recursive snapshots of a zfs file system. All snapshots\n\thave the time they were taken built into their name, so it is easy\n\tto determine when the snapshot was taken.\n\n\tUsage: zautosnap.sh zfsFileSystem SnapShotType [MaxSnapsToKeep]\n\n\tzfsFileSystem\n\t\tThe file system that will be snapshotted.\n\n\tSnapShotLabel\n\t\tChose a label for the snapshot (e.g. Daily)\n\t\tThis can be whatever you want it to be so long as it\n\t\tis a single word.\n\n\tMaxSnapsToKeep (optional parameter)\n\t\tA number between 0 and infinity (or 42... Whichever comes first)\n\n\t\tWhen this is NOT set, an unlimited number of snapshots will\n\t\tbe kept.\n\n\t\tIf you set this to zero, all snapshots matching SnapShotLabel\n\t\twill be deleted.\n\n\t\tOtherwise, MaxSnapsToKeep will make sure that only the\n\t\tspecified number of snapshots will be kept.\n\nSAMPLE CRONTAB:\n0 0 * * * zautosnap tank DAILY 30\n0 0 1 * * zautosnap tank MONTHLY 3\n\nSAMPLE SNAPSHOT:\nWhen you run `zfs list -t snapshot` you'll see snapshots like this:\n\ttank/iso@zautosnap_DAILY_2011-11-11_01:15:03\n\nEXAMPLES:\n\tzautosnap tank DAILY 0\t#Remove all 'DAILY' snapshots from tank\n\tzautosnap tank DAILY 30\t#keep up to 30 'DAILY' snapshots\n\tzautosnap tank DAILY\t#keep unlimited 'DAILY' snapshots\n\nLICENSE:\n\nThe MIT License\n\nCopyright (c) 2015 Gregory L. Dietsche \u003cgreg@gregd.org\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarmergreg%2Fzfs-auto-snapshot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffarmergreg%2Fzfs-auto-snapshot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffarmergreg%2Fzfs-auto-snapshot/lists"}