blob: 992928e03ab89b4902542b214e8f897f7ea63c98 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
if [ ! -r /var/lib/graphite/graphite.db ]; then
graphite-manage migrate
graphite-manage createsuperuser --noinput --username=admin --email root@localhost.localdomain
chown -R _graphite:_graphite /var/lib/graphite/
fi
service apache2 start
service carbon-cache start
while true; do sleep 10; done
|