diff options
author | Stefan Wagner <stw@bit-strickerei.de> | 2016-04-15 13:11:03 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-04-15 13:52:04 +0000 |
commit | 0faf06db560efcce37a86a72a4b56a42dd7e3661 (patch) | |
tree | 473a7eb33e1a08c72fdc4374d3d18230be4cb5e5 /testing/munin/munin-node.pre-install | |
parent | 95879a2a9b6caaa04c86abc8a732b41c6d7303dd (diff) | |
download | aports-0faf06db560efcce37a86a72a4b56a42dd7e3661.tar.bz2 aports-0faf06db560efcce37a86a72a4b56a42dd7e3661.tar.xz |
testing/munin: new aport
A distributed monitoring/graphing tool
http://munin-monitoring.org/
Diffstat (limited to 'testing/munin/munin-node.pre-install')
-rw-r--r-- | testing/munin/munin-node.pre-install | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/munin/munin-node.pre-install b/testing/munin/munin-node.pre-install new file mode 100644 index 0000000000..86c601a64f --- /dev/null +++ b/testing/munin/munin-node.pre-install @@ -0,0 +1,10 @@ +#!/bin/sh + +username=munin +groupname="$username" + +addgroup -S "$username" 2>/dev/null +adduser -S -H -h /run/"$username" -s /sbin/nologin -D -G "$groupname" \ + "$username" 2>/dev/null + +exit 0 |