Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: debops-contrib/ansible-checkmk_server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 432e67d50c26e4bdb593bdebdf52648f652bf208
Choose a base ref
..
head repository: debops-contrib/ansible-checkmk_server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e51f79ff17cceb4e4d4bc95c66c3c40cc0b356fa
Choose a head ref
Showing with 302 additions and 315 deletions.
  1. +11 −0 .gitignore
  2. +12 −4 CHANGES.rst
  3. +3 −3 COPYRIGHT
  4. +1 −1 README.md
  5. +3 −0 TODO
  6. +190 −189 defaults/main.yml
  7. +3 −1 docs/credits.rst
  8. +32 −30 docs/{defaults-configuration.rst → defaults-detailed.rst}
  9. +5 −3 docs/getting-started.rst
  10. +15 −9 docs/guides.rst
  11. +1 −0 docs/includes/all.rst
  12. +3 −3 docs/index.rst
  13. +4 −6 docs/introduction.rst
  14. +2 −2 meta/main.yml
  15. +2 −1 tasks/main.yml
  16. +3 −0 tasks/site.yml
  17. +4 −10 tasks/users.yml
  18. +6 −51 tasks/wato.yml
  19. +2 −2 templates/lookup/checkmk_server__sites.j2
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -9,3 +9,14 @@ tests/test_out.mk
Session.vim
.netrwhist
*~
## For quick testing.
## Generated by https://github.com/ypid/ypid-ansible-common/blob/master/bin/sphinx-debops-role-build
docs/Makefile
docs/_build/
docs/conf.py
docs/defaults.rst
docs/includes/global.rst
docs/_templates/page.html
docs/_templates/.gitkeep
docs/_static/custom.css
docs/_static/.gitkeep
16 changes: 12 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
Changelog
=========

.. include:: includes/all.rst

**debops-contrib.checkmk_server**

This project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`_
and `human-readable changelog <http://keepachangelog.com/>`_.
This project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`__
and `human-readable changelog <http://keepachangelog.com/en/0.3.0/>`__.

The current role maintainer is ganto.
The current role maintainer_ is ganto.


debops-contrib.checkmk_server master - unreleased
@@ -15,4 +17,10 @@ debops-contrib.checkmk_server master - unreleased
Added
~~~~~

- Initial release [ganto]
- Initial release [ganto_]

Fixed
~~~~~

- Fix ``checkmk_server__ssh_command`` which would have been wrongly generated
with ``checkmk_server__ssh_user`` set to ``root``. [ypid_]
6 changes: 3 additions & 3 deletions COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
debops-contrib.checkmk_server - Manage Check_MK monitoring server

Copyright (C) 2016 Reto Gantenbein <reto.gantenbein@linuxmonk.ch>
Copyright (C) 2016 DebOps Project http://debops.org/
Copyright (C) 2016-2017 Reto Gantenbein <reto.gantenbein@linuxmonk.ch>
Copyright (C) 2016-2017 DebOps https://debops.org/

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3, as
@@ -13,4 +13,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
along with this program. If not, see https://www.gnu.org/licenses/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ This role installs and manages [Check_MK](http://mathias-kettner.com/check_mk.ht

### Installation

This role requires at least Ansible `v2.1.1`. To install it, run:
This role requires at least Ansible `v2.1.5`. To install it, run:

```Shell
ansible-galaxy install debops-contrib.checkmk_server
3 changes: 3 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

* Fix internal role namespace
git ls-files -z "$(git rev-parse --show-toplevel)" | xargs --null -I '{}' find '{}' -type f -print0 | xargs --null sed --in-place --regexp-extended 's/\<(checkmk_server)_([^_])/\1__\2/g;'
Loading