-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
41 lines (30 loc) · 879 Bytes
/
Copy pathinstall.sh
File metadata and controls
41 lines (30 loc) · 879 Bytes
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
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
echo Register DotDeb as package resource
./apt/register-dotdeb.sh
read -p "Do you have a samba shared folder you want to mount (y/n)? [ \"n\" ]"
if [[ $REPLY =~ ^[Yy]$ ]]; then
echo Install Samba-mount
./samba/init.sh
fi
# Programms I personally like ...
echo Install htop
aptitude -y install htop > /dev/null
echo Install and configure Bind9
./bind9/init.sh
echo Install and configure MySQL
./mysql/init.sh
echo Install and configure PHP
./php/init.sh
echo Install GraphicsMagick
aptitude -y install graphicsmagick
# create directory for logs
[ -a /var/www/log ] || mkdir /var/www/log
echo Install and configure Apache2
./apache/init.sh
echo Install and configure nginx
./nginx/init.sh
read -p "Do you want to have Solr installed - preconfigured for TYPO3 (y/n)?"
if [[ $REPLY =~ ^[Yy]$ ]]; then
./solr/init.sh
fi