Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #14406: Reduce the size of the agent by removing cf-monitord #1814

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rudder-agent/SOURCES/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -659,10 +659,10 @@ install-xml: build-xml
install-cfengine: build-cfengine $(INSTALL_DEPS)
cd cfengine-source && $(MAKE) install DESTDIR=$(DESTDIR) STRIP=""
mkdir -p $(DESTDIR)/opt/rudder/share/man/man8
cd cfengine-source && for binary in cf-agent cf-promises cf-key cf-execd cf-serverd cf-monitord cf-runagent; do \
cd cfengine-source && for binary in cf-agent cf-promises cf-key cf-execd cf-serverd cf-net cf-runagent; do \
LD_LIBRARY_PATH="$(DESTDIR)/opt/rudder/lib" $${binary}/$${binary} -M | gzip > $(DESTDIR)/opt/rudder/share/man/man8/$${binary}.8.gz; \
done
cd $(DESTDIR)/opt/rudder && rm -rf share/doc/cfengine
cd $(DESTDIR)/opt/rudder && rm -rf share/doc/cfengine && rm bin/cf-monitord

install-perl: build-perl
cd perl-$(PERL_RELEASE) && $(MAKE) install DESTDIR=$(DESTDIR)
Expand Down