mirror of
https://github.com/ntop/ntopng.git
synced 2026-08-20 13:53:30 +00:00
11 lines
237 B
Bash
Executable file
11 lines
237 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DATA_DIR=/var/lib/ntopng/
|
|
if [ ! -d "$DATA_DIR" ]; then
|
|
# Create data directory
|
|
mkdir $DATA_DIR
|
|
chmod gou+w $DATA_DIR
|
|
fi
|
|
|
|
# Enable + start ntopng
|
|
sudo launchctl load -w /Library/LaunchDaemons/org.ntop.ntopng.plist
|