blob: c9baa93e63d8e01d46fade0fd1ebf681e143dc46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#!/bin/bash
whisper_dir="/opt/graphite/storage/whisper/"
webapp_dir="/opt/graphite/storage/log/webapp/"
cd /opt/graphite
if [ -d $whisper_dir ]; then
echo "Whisper directory already exists"
else
echo "...creating missing whisper dir"
mkdir -p $whisper_dir
fi
if [ -d $webapp_dir ]; then
echo "Webapp directory already exists"
else
echo "...creating missing webapp dir"
mkdir -p $webapp_dir
fi
if [ ! -f /opt/graphite/conf/local_settings.py ]; then
echo "Creating default config for graphite-web..."
cp /opt/graphite/conf.example/local_settings.py /opt/graphite/conf/local_settings.py
RANDOM_STRING=$(python -c 'import random; import string; print "".join([random.SystemRandom().choice(string.digits + string.letters) for i in range(100)])')
sed "s/%%SECRET_KEY%%/${RANDOM_STRING}/" -i /opt/graphite/conf/local_settings.py
fi
if [ ! -L /opt/graphite/webapp/graphite/local_settings.py ]; then
echo "Creating symbolic link for local_settings.py in graphite-web..."
ln -s /opt/graphite/conf/local_settings.py /opt/graphite/webapp/graphite/local_settings.py
fi
sed "s/%%CLUSTER_SERVERS%%/${CLUSTER_SERVERS}/" -i /opt/graphite/conf/local_settings.py
if [ ! -f /opt/graphite/conf/carbon.conf ]; then
echo "Creating default config for carbon..."
cp /opt/graphite/conf.example/carbon.conf /opt/graphite/conf/carbon.conf
fi
if [ ! -f /opt/graphite/conf/storage-schemas.conf ]; then
echo "Creating default storage schema for carbon..."
cp /opt/graphite/conf.example/storage-schemas.conf /opt/graphite/conf/storage-schemas.conf
fi
if [ ! -f /opt/graphite/conf/storage-aggregation.conf ]; then
echo "Creating default storage schema for carbon..."
cp /opt/graphite/conf.example/storage-aggregation.conf /opt/graphite/conf/storage-aggregation.conf
fi
if [ ! -f /opt/graphite/storage/graphite.db ]; then
echo "Creating database..."
PYTHONPATH=$GRAPHITE_ROOT/webapp django-admin.py migrate --settings=graphite.settings --run-syncdb --noinput
chown nginx:nginx /opt/graphite/storage/graphite.db
# Auto-magical create an django user with default login
script="from django.contrib.auth.models import User;
username = 'admin';
password = 'admin';
email = 'admin@example.com';
if User.objects.filter(username=username).count()==0:
User.objects.create_superuser(username, email, password);
print('Superuser created.');
else:
print('Superuser creation skipped.');
"
printf "$script" | PYTHONPATH=$GRAPHITE_ROOT/webapp django-admin.py shell --settings=graphite.settings
fi
exec supervisord -c /etc/supervisord.conf
|