10 lines
140 B
Bash
Executable File
10 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "stopping netdata..."
|
|
service netdata stop
|
|
|
|
echo "starting netdata..."
|
|
service netdata start
|
|
|
|
echo "netdata file refresh"
|