Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
checkmk-formula
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
salt
checkmk-formula
Commits
89d629c1
"hshbase/pythonpackages.sls" did not exist on "a37ddcaa06bbd915d8212eaddc616362fc0d352e"
Commit
89d629c1
authored
4 years ago
by
Dennis Ahrens
Browse files
Options
Downloads
Patches
Plain Diff
Remove freebsd monitoring
parent
7a459b3d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+0
-4
0 additions, 4 deletions
README.md
checkmk/freebsd.sls
+0
-101
0 additions, 101 deletions
checkmk/freebsd.sls
with
0 additions
and
105 deletions
README.md
+
0
−
4
View file @
89d629c1
...
@@ -38,10 +38,6 @@ base:
...
@@ -38,10 +38,6 @@ base:
Installs and enables the checkmk agent on debian based systems.
Installs and enables the checkmk agent on debian based systems.
### `checkmk.freebsd`
Installs and enables the checkmk agent on freebsd based systems.
### `checkmk.debian.apache_status`
### `checkmk.debian.apache_status`
Installs the
[
apache_status
](
https://checkmk.com/cms_check_apache_status.html
)
agent plugin.
Installs the
[
apache_status
](
https://checkmk.com/cms_check_apache_status.html
)
agent plugin.
...
...
This diff is collapsed.
Click to expand it.
checkmk/freebsd.sls
deleted
100644 → 0
+
0
−
101
View file @
7a459b3d
hsh_checkmk_install_dependencies:
pkg.installed:
- pkgs:
# - sysutils/muse
- sysutils/ipmitool
- devel/libstatgrab
hsh_checkmk_enable_inetd:
file.line:
- name: /etc/rc.conf
- mode: ensure
- content: 'inetd_enable=yes'
- after: 'dumdev="AUTO"'
- require:
- pkg: hsh_checkmk_install_dependencies
hsh_checkmk_configure_inetd:
file.line:
- name: /etc/rc.conf
- mode: ensure
- content: 'inetd_flags=-wW'
- after: 'inetd_enable=yes'
- require:
- file: hsh_checkmk_enable_inetd
hsh_checkmk_install_agent:
file.managed:
- name: /usr/local/bin/checkmk_agent
- source: salt://checkmk/checkmk-files/check_mk_agent.freebsd
- user: root
- group: wheel
- mode: 755
hsh_checkmk_register_checkmk_service:
file.line:
- name: /etc/services
- mode: ensure
- content: 'checkmk 6556/tcp #checkmk agent'
- after: 'dbbrowse 47557/udp #Databeam Corporation'
hsh_checkmk_install_inetd_service:
file.line:
- name: /etc/inetd.conf
- mode: ensure
- content: 'checkmk stream tcp nowait root /usr/local/bin/checkmk_agent checkmk_agent'
- after: '#swat stream tcp nowait/400 root /usr/local/sbin/swat swat'
hsh_checkmk_inetd_allow_access:
file.line:
- name: /etc/hosts.allow
- mode: ensure
- content: 'checkmk_agent : 141.71.3.61 : allow'
- after: 'ftpd : ALL : allow'
hsh_checkmk_inetd_secure_access:
file.line:
- name: /etc/hosts.allow
- mode: ensure
- content: 'checkmk_agent : ALL : deny'
- after: 'checkmk_agent : 141.71.3.61 : allow'
- require:
- file: hsh_checkmk_inetd_allow_access
hsh_checkmk_plugin_dir:
file.directory:
- name: /usr/lib/check_mk_agent/plugins
- user: root
- group: wheel
- dir_mode: 755
- file_mode: 644
- makedirs: True
- recurse:
- user
- group
- mode
hsh_checkmk_install_haproxy_plugin:
file.managed:
- name: /usr/lib/check_mk_agent/plugins/mk_haproxy
- source: salt://checkmk/checkmk-files/mk_haproxy.freebsd
- user: root
- group: wheel
- mode: 755
- require:
- file: hsh_checkmk_plugin_dir
hsh_checkmk_restart_inetd_service:
cmd.run:
- name: /etc/rc.d/inetd restart
- watch:
- file: hsh_checkmk_install_agent
- require:
- pkg: hsh_checkmk_install_dependencies
- file: hsh_checkmk_enable_inetd
- file: hsh_checkmk_configure_inetd
- file: hsh_checkmk_install_agent
- file: hsh_checkmk_install_haproxy_plugin
- file: hsh_checkmk_register_checkmk_service
- file: hsh_checkmk_install_inetd_service
- file: hsh_checkmk_inetd_allow_access
- file: hsh_checkmk_inetd_secure_access
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment