blob: a79d627e1067f468c3bf5f76c48b8bf3bc3b7625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo "---------------------------------------------------------
Sar2RRD - quick howto:
systemctl enable sysstat-collect.timer # enable and start data collection
systemctl start sysstat-collect.timer
# wait a few minutes
cd /tmp; mkdir rrd img
sar -A >/tmp/test.sar
sar2rrd -f /tmp/test.sar
# check out graphs in img/
---------------------------------------------------------"
}
post_upgrade() {
post_install
}
|