-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·97 lines (75 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/bash
is_action_successful(){
program_name=$1
exit_code=$2
action=${3:-INSTALLED}
if [[ $exit_code -eq 0 ]] ; then
printf '\e[32m%-6s\e[m' "$program_name $action"
else
printf '\e[31m%-6s\e[m' "$program_name NOT $action"
echo -e "\n"
exit 1
fi
echo -e "\n"
}
sudo echo "Welcome to Angular deployment installation!"
#get and edit config file
script_name="config"
curl https://raw.githubusercontent.com/michalakadam/angular-build-deploy-tool/master/$script_name -o $(pwd)/$script_name
is_action_successful "$script_name file" $? "downloaded from github.com/michalakadam/angular-build-deploy-tool repository"
#fill config file with user's values
gather_input_from_user(){
variable_name=$1
prompt=$2
default_value=${3:-''}
value=''
while [[ $value == '' ]]
do
if [[ $default_value == '' ]]; then
read -p "$prompt: " value
else
read -p "Provide $prompt[$default_value]: " value
value=${value:-$default_value}
fi
done
add_to_config_file $variable_name $value
echo -e "\n"
}
add_to_config_file(){
variable_name=$1
value=$2
sed -i "s@$variable_name@$variable_name=\"$value\"@g" $(pwd)/config
}
gather_input_from_user source_location_locally "absolute path of your angular project folder on your local machine"
gather_input_from_user source_location_remotely "absolute path of your angular project folder on the remote server"
gather_input_from_user su_name "super user name at the remote server" "root"
gather_input_from_user ip_address "ip address of the remote server"
gather_input_from_user remote_repo_server_name "name of remote repository on the server" "origin"
gather_input_from_user built_project_location "location for compiled webapp on remote server" "/var/www"
#Load configuration provided by user from config file
source $(pwd)/config
#move config file to project folder
cp $(pwd)/config $source_location_locally/deployment_script_config
#add config file to project .gitignore
cat <<EOT >> $source_location_locally/.gitignore
#files related to Angular project deployment
deployment_script_config
deploy.sh
EOT
echo "Committing changes in project's .gitignore file..."
cd $source_location_locally
git add .gitignore
git commit -m "ignore files related to deployment script"
#get script for local machine
script_name=git_push_server_update.sh
sudo curl https://raw.githubusercontent.com/michalakadam/angular-build-deploy-tool/master/$script_name -o $source_location_locally/deploy.sh
sudo chmod a+x $source_location_locally/deploy.sh
#load config file in the deployment script
sudo sed -i "s@CONFIG_FILE_LOCATION@$source_location_locally/deployment_script_config@g" $source_location_locally/deploy.sh
#download remote server script to remote server
script_name=pull_and_build.sh
ssh $su_name@$ip_address "curl https://raw.githubusercontent.com/michalakadam/angular-build-deploy-tool/master/$script_name > /usr/bin/$script_name && sudo chmod u+x /usr/bin/$script_name"
is_action_successful "$script_name file" $? "downloaded from repository to $ip_address at /usr/bin/$script_name"
#remove installation script when the job is done
rm $(pwd)/config
rm -- "$0"