mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
mnc: interact with munin-plugins-busybox
This commit is contained in:
parent
bf25714e3a
commit
c32620c645
1 changed files with 8 additions and 1 deletions
|
@ -11,4 +11,11 @@ munin-node-c: ${OBJS}
|
||||||
${CC} ${CFLAGS} $^ -o $@
|
${CC} ${CFLAGS} $^ -o $@
|
||||||
clean:
|
clean:
|
||||||
rm -f munin-node-c ${OBJS} ${LINKS}
|
rm -f munin-node-c ${OBJS} ${LINKS}
|
||||||
.PHONY: all clean
|
rm -Rf plugins
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
mkdir -p plugins
|
||||||
|
cd ../munin-plugins-busybox && make
|
||||||
|
cd plugins && for i in $$(find ../../munin-plugins-busybox -type l); do ln -s $$i; done
|
||||||
|
|
||||||
|
.PHONY: all clean plugins
|
||||||
|
|
Loading…
Reference in a new issue