mirror of
https://github.com/netdata/netdata.git
synced 2025-02-02 04:39:47 +00:00
78fcd815dc
* Restructure packaging related files to better reflect usage. * Remove redundant variable declaration. * Fix variable name.
11 lines
150 B
Bash
Executable file
11 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
install)
|
|
if ! getent group netdata > /dev/null; then
|
|
addgroup --quiet --system netdata
|
|
fi
|
|
;;
|
|
esac
|