We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f330cb commit 92aaa42Copy full SHA for 92aaa42
dockerfiles/3/Dockerfile.debian.bookworm
@@ -98,3 +98,11 @@ RUN (egrep -i "^${NAGIOS_GROUP}" /etc/group || groupadd $NAGIOS_GROUP) && \
98
(egrep -i "^${NAGIOS_CMDGROUP}" /etc/group || groupadd $NAGIOS_CMDGROUP) && \
99
(id -u $NAGIOS_USER || useradd --system -d $NAGIOS_HOME -g $NAGIOS_GROUP $NAGIOS_USER) && \
100
(id -u $NAGIOS_CMDUSER || useradd --system -d $NAGIOS_HOME -g $NAGIOS_CMDGROUP $NAGIOS_CMDUSER)
101
+
102
103
+# Install qstat
104
+RUN cd /tmp && \
105
+ git clone https://github.com/multiplay/qstat.git && \
106
+ cd qstat && ./autogen.sh && ./configure && make && make install && make clean && \
107
+ cd /tmp && rm -rf qstat
108
0 commit comments