{"id":15022556,"url":"https://github.com/puppetlabs/puppetlabs-zfs_core","last_synced_at":"2026-01-20T17:26:45.104Z","repository":{"id":32467755,"uuid":"131065891","full_name":"puppetlabs/puppetlabs-zfs_core","owner":"puppetlabs","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-20T00:39:46.000Z","size":246,"stargazers_count":0,"open_issues_count":7,"forks_count":37,"subscribers_count":90,"default_branch":"main","last_synced_at":"2025-06-25T17:58:15.438Z","etag":null,"topics":["module","puppet","supported","zfs","zpool"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/puppetlabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-25T21:30:32.000Z","updated_at":"2024-11-20T00:39:50.000Z","dependencies_parsed_at":"2024-01-11T00:53:34.237Z","dependency_job_id":"730e851d-2f51-44d5-880b-1c2b18b5ba9b","html_url":"https://github.com/puppetlabs/puppetlabs-zfs_core","commit_stats":{"total_commits":122,"total_committers":29,"mean_commits":4.206896551724138,"dds":0.7868852459016393,"last_synced_commit":"07110a6a8f4d458b15772819448373fcda52781a"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/puppetlabs/puppetlabs-zfs_core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puppetlabs%2Fpuppetlabs-zfs_core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puppetlabs%2Fpuppetlabs-zfs_core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puppetlabs%2Fpuppetlabs-zfs_core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puppetlabs%2Fpuppetlabs-zfs_core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/puppetlabs","download_url":"https://codeload.github.com/puppetlabs/puppetlabs-zfs_core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puppetlabs%2Fpuppetlabs-zfs_core/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265443549,"owners_count":23766410,"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","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":["module","puppet","supported","zfs","zpool"],"created_at":"2024-09-24T19:58:06.732Z","updated_at":"2026-01-20T17:26:45.052Z","avatar_url":"https://github.com/puppetlabs.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# zfs_core\n\n[![Modules Status](https://github.com/puppetlabs/puppetlabs-zfs_core/workflows/%5BDaily%5D%20Unit%20Tests%20with%20nightly%20Puppet%20gem/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-zfs_core/actions)\n[![Modules Status](https://github.com/puppetlabs/puppetlabs-zfs_core/workflows/Static%20Code%20Analysis/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-zfs_core/actions) \n[![Modules Status](https://github.com/puppetlabs/puppetlabs-zfs_core/workflows/Unit%20Tests%20with%20nightly%20Puppet%20gem/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-zfs_core/actions) \n[![Modules Status](https://github.com/puppetlabs/puppetlabs-zfs_core/workflows/Unit%20Tests%20with%20released%20Puppet%20gem/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-zfs_core/actions)\n\n\n#### Table of Contents\n\n1. [Description](#description)\n2. [Usage - Configuration options and additional functionality](#usage)\n3. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n4. [Limitations - OS compatibility, etc.](#limitations)\n5. [Development - Guide for contributing to the module](#development)\n\n\u003ca id=\"description\"\u003e\u003c/a\u003e\n## Description\n\nThe zfs_core module is used to manage both zfs and zpool resources. Though This\nmodule is only tested on Solaris machines, it should also work on any machine\nthat has zfs or zpool resources.\n\n\u003ca id=\"usage\"\u003e\u003c/a\u003e\n## Usage\n\nTo create a zpool resource with the name `tstpool` that uses the disk `/ztstpool/dsk`, use the following code:\n```\nzpool { 'tstpool':\n  ensure =\u003e present,\n  disk =\u003e '/ztstpool/dsk',\n}\n```\nTo create a zfs resource based on the pool created above, use the following code:\n```\nzfs { 'tstpool/tstfs':\n  ensure =\u003e present,\n}\n```\n\n\u003ca id=\"reference\"\u003e\u003c/a\u003e\n## Reference\n\nPlease see the REFERENCE.md documentation for the `zfs_core` and `zpool_core` modules.\n\nThis module is documented using Puppet Strings.\n\nFor a quick primer on how Strings works, please see [this blog post](https://puppet.com/blog/using-puppet-strings-generate-great-documentation-puppet-modules) or the [README.md](https://github.com/puppetlabs/puppet-strings/blob/master/README.md) for Puppet Strings.\n\nTo generate documentation locally, run the following command:\n```\nbundle install\nbundle exec puppet strings generate ./lib/**/*.rb\n```\nThis command will create a browsable `\\_index.html` file in the `doc` directory. The references available here are all generated from YARD-style comments embedded in the code base. When any development happens on this module, the impacted documentation should also be updated.\n\n\u003ca id=\"limitations\"\u003e\u003c/a\u003e\n## Limitations\n\nThis module is only available on platforms that have both zfs and zpool available.\n\n\u003ca id=\"development\"\u003e\u003c/a\u003e\n## Development\n\nPuppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can't access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.\n\nWe want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.\n\nFor more information, see our [module contribution guide.](https://puppet.com/docs/puppet/latest/contributing.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpuppetlabs%2Fpuppetlabs-zfs_core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpuppetlabs%2Fpuppetlabs-zfs_core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpuppetlabs%2Fpuppetlabs-zfs_core/lists"}