diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-10 19:01:37 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-10 19:01:37 +0200 |
commit | ffcb145b580a35972d1be48798188f92cf760348 (patch) | |
tree | 838544980011dd25021ff4fb13b9cc8d3e77dec2 | |
parent | bf029ff1c72db99e925207f70421aaf95d9b1d65 (diff) | |
download | jenkins.debian.net-ffcb145b580a35972d1be48798188f92cf760348.tar.xz |
install postfix and configure munin
-rwxr-xr-x | update_jdn.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index c4a874fc..c205f713 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -121,6 +121,7 @@ if [ -f /etc/debian_version ] ; then munin-node munin-plugins-extra pigz + postfix python3-psycopg2 schroot screen @@ -271,7 +272,12 @@ if [ "$HOSTNAME" = "jenkins" ] ; then fi if [ $BASEDIR/hosts/$HOSTNAME/etc/munin -nt $STAMP ] || [ ! -f $STAMP ] ; then - cd /etc/munin/plugins ; sudo rm -f postfix_* open_inodes df_inode interrupts irqstats threads proc_pri vmstat if_err_eth0 fw_forwarded_local fw_packets forks open_files users 2>/dev/null + cd /etc/munin/plugins + sudo rm -f postfix_* open_inodes df_inode interrupts irqstats threads proc_pri vmstat if_err_* exim_* netstat fw_forwarded_local fw_packets forks open_files users 2>/dev/null + case $HOSTNAME in + jenkins|profitbricks-build?-amd64) [ -L /etc/munin/plugins/squid_cache ] || for i in squid_cache squid_objectsize squid_requests squid_traffic ; do sudo ln -s /usr/share/munin/plugins/$i $i ; done ;; + *) ;; + esac if [ "$HOSTNAME" = "jenkins" ] && [ ! -L /etc/munin/plugins/apache_accesses ] ; then for i in apache_accesses apache_volume ; do sudo ln -s /usr/share/munin/plugins/$i $i ; done fi |