Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
build-mkp
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package registry
Container Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
checkmk
build-mkp
Commits
a52e5488
Commit
a52e5488
authored
2 months ago
by
Frank Baier
Browse files
Options
Downloads
Patches
Plain Diff
remove "lib" dir from new check agent api because its required for agent checks
parent
e79ee5eb
Branches
main
Tags
latest
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dist.py
+1
-1
1 addition, 1 deletion
dist.py
with
1 addition
and
1 deletion
dist.py
+
1
−
1
View file @
a52e5488
...
...
@@ -7,7 +7,7 @@ print(os.getcwd())
os
.
makedirs
(
f
"
cmk_addons_plugins/
{
os
.
environ
.
get
(
'
PROJECT_NAME
'
)
}
"
)
if
os
.
path
.
exists
(
'
agent_based
'
):
items
=
[
'
__init__.py
'
,
'
agent_based
'
,
'
graphing
'
,
'
libexec
'
,
'
rulesets
'
,
'
server_side_calls
'
,
'
special_agents
'
,
'
lib
'
,
'
checkman
'
]
items
=
[
'
__init__.py
'
,
'
agent_based
'
,
'
graphing
'
,
'
libexec
'
,
'
rulesets
'
,
'
server_side_calls
'
,
'
special_agents
'
,
'
checkman
'
]
# 'lib'
for
item
in
items
:
if
os
.
path
.
exists
(
item
):
shutil
.
move
(
item
,
f
"
cmk_addons_plugins/
{
os
.
environ
.
get
(
'
PROJECT_NAME
'
)
}
"
)
...
...
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