-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from redBorder/development
Release 0.1.0
- Loading branch information
Showing
5 changed files
with
47 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
# common Cookbook | ||
# cookbook-rb-common | ||
[![Build Status][build-shield]][build-url] | ||
[![Linters][linters-shield]][linters-url] | ||
[![License][license-shield]][license-url] | ||
|
||
<!-- Badges --> | ||
[build-shield]: https://github.com/redBorder/cookbook-rb-common/actions/workflows/rpm.yml/badge.svg?branch=master | ||
[build-url]: https://github.com/redBorder/cookbook-rb-common/actions/workflows/rpm.yml?query=branch%3Amaster | ||
[linters-shield]: https://github.com/redBorder/cookbook-rb-common/actions/workflows/lint.yml/badge.svg?event=push | ||
[linters-url]: https://github.com/redBorder/cookbook-rb-common/actions/workflows/lint.yml | ||
[license-shield]: https://img.shields.io/badge/license-AGPLv3-blue.svg | ||
[license-url]: https://github.com/cookbook-rb-common/blob/HEAD/LICENSE | ||
|
||
Cookbook to configure common system redborder settings | ||
|
||
|
@@ -8,15 +19,7 @@ Cookbook to configure common system redborder settings | |
|
||
### Chef | ||
|
||
- Chef 12.0 or later | ||
|
||
# BUILDING | ||
|
||
- Build rpm package for redborder platform: | ||
* git clone https://github.com/redborder/cookbook-rb-common.git | ||
* cd cookbook-rb-common | ||
* make | ||
* RPM packages is under packaging/rpm/pkgs/ | ||
- Chef 15.7.0 or later | ||
|
||
## Contributing | ||
|
||
|
@@ -28,7 +31,5 @@ Cookbook to configure common system redborder settings | |
6. Submit a Pull Request using Github | ||
|
||
## License | ||
GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 | ||
|
||
## Authors | ||
Miguel Negrón <[email protected]> | ||
GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# require 'set' TODO: refactor to this | ||
# nofile settings (ulimits) | ||
default[:redborder][:nofile] = {} | ||
default[:redborder][:nofile][:soft] = 8192 | ||
default[:redborder][:nofile][:hard] = 8192 | ||
default[:redborder][:nofile][:soft] = 65535 | ||
default[:redborder][:nofile][:hard] = 65535 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name 'rb-common' | ||
maintainer 'Miguel Negron' | ||
maintainer_email 'manegron@redborder.com' | ||
license 'All rights reserved' | ||
maintainer 'Eneo Tecnología S.L.' | ||
maintainer_email 'git@redborder.com' | ||
license 'AGPL-3.0' | ||
description 'Redborder common system settings' | ||
version '0.0.1' | ||
version '0.1.0' |