13 lines
254 B
Bash
Executable File
13 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "uninstall" ] ; then
|
|
echo ""
|
|
else # Installation procedure below
|
|
mkdir -p /data/monitoring/grafana /data/monitoring/data
|
|
chown 472:472 /data/monitoring/grafana -R
|
|
chown nobody:nogroup -R /data/monitoring/data
|
|
fi
|
|
|
|
|
|
|