-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinstall.sh
executable file
·56 lines (44 loc) · 1.06 KB
/
install.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
#!/bin/bash
DISTRIBUTOR=$(lsb_release -i | awk -F"\t" '{print $2}')
if [ "$DISTRIBUTOR" = "Ubuntu" ]; then
. /etc/lsb-release
echo $DISTRIB_DESCRIPTION
if [ "$DISTRIB_RELEASE" = "14.04" ]; then
chmod +x *.sh
mkdir -p ./logs
chmod 755 ./logs
rm -rf ./logs/*
./preinstall.sh
./install_git_core.sh
./install_git_gui.sh
./install_emacs.sh
./install_spotify.sh
./install_vlc.sh
#./install_steam.sh
./install_sublimetext3.sh
./install_icons.sh
./install_docker.sh
./install_nvm.sh
./install_rbenv.sh
./install_virtualbox.sh
./install_ffmpeg.sh
./install_filezilla.sh
./install_android.sh
./install_power_managment.sh
./install_git_bash_prompt.sh
./install_gimp.sh
./install_inkscape.sh
./install_mysql.sh
./install_mysql_workbench.sh
./install_robomongo.sh
./install_mongo.sh
else
echo ""
echo "Sorry, this script only works with Ubuntu 14.04 for the moment. You are running $DISTRIB_RELEASE"
echo ""
fi
else
echo ""
echo "Sorry, this script only works with Ubuntu. You are running $DISTRIBUTOR"
echo ""
fi