blob: eb84c90f66aed871b1c84a81a1a9b507f89c8cb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
apt-get update
apt-get install screen zsh libapache-mod-ssl libapache-mod-perl rsync \
postgresql cvs fsh \
liburi-perl libhtml-tagset-perl libnet-perl liblocale-codes-perl \
libnet-whois-perl libwww-perl libbusiness-creditcard-perl \
libmailtools-perl libtimedate-perl libdate-manip-perl \
libfile-counterfile-perl libfreezethaw-perl libstring-approx-perl \
libtext-template-perl libdbi-perl libdbd-pg-perl \
libdbix-datasource-perl libdbix-dbschema-perl libnet-ssh-perl \
libstring-shellquote-perl libnet-scp-perl libapache-asp-perl \
libtie-ixhash-perl libtime-duration-perl \
libhtml-widgets-selectlayers-perl libstorable-perl \
libapache-dbi-perl libdbd-mysql-perl
useradd freeside
su postgres -c "createuser -P freeside"
su freeside -c "createdb freeside"
|