File: munin-node-c.postinst

package info (click to toggle)
munin-c 0.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 332 kB
  • ctags: 85
  • sloc: ansic: 1,566; sh: 87; makefile: 48
file content (15 lines) | stat: -rw-r--r-- 214 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

case "$1" in 

configure)
    update-inetd --add "4949 stream tcp nowait nobody /usr/sbin/munin-node-c /usr/sbin/munin-node-c"
    update-inetd --enable "4949"
    ;;
*)

    ;;
esac
#DEBHELPER#