Skip to content

Commit 3fd4771

Browse files
committed
ready for testing part III
1 parent cabc989 commit 3fd4771

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ services:
77
context: .
88
dockerfile: dockerfiles/checkmk/Dockerfile
99
args:
10-
CHECKMK_VERSION: 2.4.0p19
10+
#CHECKMK_VERSION: 2.4.0p19
11+
CHECKMK_VERSION: 2.3.0p38
1112
CMK_PASSWORD: cmkadmin
1213
CMK_SITE_ID: cmk
1314
restart: unless-stopped

dockerfiles/checkmk/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ ARG CMK_SITE_ID=cmk
99

1010
# python3 and git needed for modify-extension.py
1111
RUN apt -y update && \
12-
apt -y install python3 \
13-
python3-git
12+
apt -y install less \
13+
python3 \
14+
python3-git \
15+
vim
1416

1517
# scripts used need to be executable
1618
COPY dockerfiles/checkmk/modify-extension.py /usr/local/bin

mkp/local/lib/python3/cmk_addons/plugins/yum/rulesets/yum_cee.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _parameter_form_yum_bakery() -> Dictionary:
9696
'deployment': DictElement(
9797
required=True,
9898
parameter_form=CascadingSingleChoice(
99-
title=Title('Deployment options for the YUM Update Check'),
99+
title=Title('Deployment options'),
100100
prefill=DefaultValue('deploy'),
101101
help_text=Help(
102102
'Determines how the the <tt>YUM</tt> plugin will run on a deployed agent or disables it on an deployed agent'),
@@ -142,7 +142,6 @@ def _parameter_form_yum_bakery() -> Dictionary:
142142
title=Title('YUM Update Check'),
143143
name='yum',
144144
parameter_form=_parameter_form_yum_bakery,
145-
# topic=Topic.APPLICATIONS,
146145
topic=Topic.OPERATING_SYSTEM,
147146
help_text=Help('This will deploy the agent plugin <tt>YUM</tt> '
148147
'for checking package update status.'),

0 commit comments

Comments
 (0)