forked from domogik/domogik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaptitude_pnb_local.sh
executable file
·61 lines (54 loc) · 1.26 KB
/
aptitude_pnb_local.sh
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
#!/bin/bash
echo "
build-essential \
pkg-config \
libzmq-dev \
postgresql-common \
libpq-dev \
libzmq-dev \
"
pkg_list="\
alembic \
mysql-server \
gettext \
\
python \
python-setuptools \
python-dev \
python-mysqldb \
python-argparse \
python-sqlalchemy \
python-simplejson \
python-openssl \
python-psutil \
python-mysqldb \
python-psycopg2 \
python-pip \
python-serial \
python-netifaces \
python-twisted \
python-flask \
python-flaskext.wtf \
python-tornado \
python-requests \
python-daemon \
python-magic \
python-zmq \
python-flask-login \
python-flask-babel \
python-gluon \
python-babel \
"
sudo aptitude install $pkg_list
sudo dpkg -l $pkg_list
echo << TXT "
to create data base:
mysql -p -u root
=============cut here=============
create database domogik;
grant usage on *.* to domogik@localhost identified by 'domopass';
grant all privileges on domogik.* to domogik@localhost ;
quit
=============cut here=============
"
TXT