Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/puppetlabs/puppetlabs-host_core
Install and manage host entries
https://github.com/puppetlabs/puppetlabs-host_core
hosts-file hostsfile module puppet supported
Last synced: 3 days ago
JSON representation
Install and manage host entries
- Host: GitHub
- URL: https://github.com/puppetlabs/puppetlabs-host_core
- Owner: puppetlabs
- License: apache-2.0
- Created: 2018-07-09T23:59:09.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-11-20T00:38:18.000Z (3 months ago)
- Last Synced: 2025-01-28T21:06:08.534Z (12 days ago)
- Topics: hosts-file, hostsfile, module, puppet, supported
- Language: Ruby
- Homepage:
- Size: 160 KB
- Stars: 1
- Watchers: 87
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# host_core
[![Modules Status](https://github.com/puppetlabs/puppetlabs-host_core/workflows/%5BDaily%5D%20Unit%20Tests%20with%20nightly%20Puppet%20gem/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-host_core/actions)
[![Modules Status](https://github.com/puppetlabs/puppetlabs-host_core/workflows/Static%20Code%20Analysis/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-host_core/actions)
[![Modules Status](https://github.com/puppetlabs/puppetlabs-host_core/workflows/Unit%20Tests%20with%20nightly%20Puppet%20gem/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-host_core/actions)
[![Modules Status](https://github.com/puppetlabs/puppetlabs-host_core/workflows/Unit%20Tests%20with%20released%20Puppet%20gem/badge.svg?branch=main)](https://github.com/puppetlabs/puppetlabs-host_core/actions)#### Table of Contents
1. [Description](#description)
2. [Usage](#usage)
3. [Reference](#reference)
4. [Development - Guide for contributing to the module](#development)The host_core module is used to manage host entries in a hosts file. For most systems, the hosts file is located in `/etc/hosts`.
To configure a `localhost` host entry to resolve to an `ip` with a list of `host_aliases`, use the following code:
```
host { 'localhost':
ensure => 'present',
host_aliases => ['localhost.localdomain', 'localhost4', 'localhost4.localdomain4'],
ip => '127.0.0.1',
target => '/etc/hosts',
}
```Please see REFERENCE.md for the reference documentation.
This module is documented using Puppet Strings.
For 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.
To generate documentation locally, run the following command:
```
bundle install
bundle exec puppet strings generate ./lib/**/*.rb
```
This 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.Puppet 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.
We 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.
For more information, see our [module contribution guide.](https://puppet.com/docs/puppet/latest/contributing.html)