-
Notifications
You must be signed in to change notification settings - Fork 3
/
functions
208 lines (135 loc) · 5.92 KB
/
functions
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#!/usr/bin/env bash
### openspace synthia bootstrap framework
### [https://github.com/openspace42/synthia]
### v0.3.2
dna_version="v0.3.2"
################################################################################
synthia-define_vars() {
############################################################################
#################### Insert your initial variables here ####################
############################################################################
export proj_name="inception"
export project_name="inception"
export author_name="openspace42"
export git_host="https://github.com"
### Set this to `y` if your project stores no data on end users' machines that could go lost during a re-install or update
export backup_prompt_during_install="y"
### Set this to the directory that has the most impactful size when performing a backup [such as `/var/www/` for nginx-related projects]
export backup_ref_dir="/path/to/ref/dir"
############################################################################
############################################################################
############################################################################
### Do NOT edit the following line
dna-define_vars
############################################################################
################## Insert your additional variables here ###################
############################################################################
############################################################################
############################################################################
############################################################################
}
################################################################################
synthia-define_formatting() {
r=$'\e[1;31m'
g=$'\e[1;32m'
l=$'\e[1;34m'
m=$'\e[1;35m'
y=$'\e[1;33m'
o=$'\e[38;5;208m'
c=$'\e[1;36m'
n=$'\e[1;39m'
x=$'\e[0m'
b=$'\033[1m'
}
synthia-check_root() {
if [[ $EUID -ne 0 ]]
then
echo "${r-}${b-}This script must be run as root.${x-}"
echo
echo "${b-}Exiting...${x-}"
echo
exit 1
fi
}
synthia-download_dna() {
clone_host="https://github.com"
clone_author="openspace42"
clone_name="dna"
clone_base_dir="/root/${clone_author}"
clone_dir="${clone_base_dir}/${clone_name}"
mkdir -p "${clone_base_dir}"
if [ "${custom_dna_version-null}" = "l" ]
then
export dna_selected_vers="v0.0.1-custom-local"
echo "${r-}${b-}Sourcing | ${n-}local version${r-} | of | ${n-}dna${r-} | respecting any local alteration performed as per | ${n-}-d l${r-} |.${x-}"
echo "${dna_selected_vers}" > "./version_installed"
else
if [ -d "${clone_dir}" ]
then
rm -r "${clone_dir:?}"
fi
( cd "${clone_base_dir}" && git clone "${clone_host}/${clone_author}/${clone_name}" && echo && cd "${clone_name}"
. ./functions/snippets
git config advice.detachedHead false
### Define latest version
export dna_latest_vers_final="$(semtag getfinal)"
export dna_latest_vers_tagged="$(semtag getlast)"
export dna_latest_vers_bl_edge="$(semtag getcurrent)"
if [ "${custom_dna_version-null}" = "b" ]
then
export dna_selected_vers="${dna_latest_vers_bl_edge}"
echo "${r-}${b-}Installing | ${n-}bleeding-edge version${r-} | of | ${n-}dna${r-} | up to latest git commit as per | ${n-}-d b${r-} |.${x-}"
echo
git fetch
git reset --hard origin/master
elif [[ "${custom_dna_version-null}" == *"v"* ]]
then
export dna_selected_vers="${custom_dna_version}"
echo "${c-}${b-}Installing | ${n-}version ${dna_selected_vers}${c-} | of | ${n-}dna${c-} | as per | ${n-}-d ${dna_selected_vers}${c-} |.${x-}"
echo
git checkout "tags/${dna_selected_vers}"
elif [ "${custom_dna_version-null}" = "t" ]
then
export dna_selected_vers="${dna_latest_vers_tagged}"
echo "${o-}${b-}Installing | ${n-}latest-tagged version [${dna_selected_vers}]${o-} | of | ${n-}dna${o-} | [independently of its stability type] as per | ${n-}-d t${o-} |.${x-}"
echo
git checkout "tags/${dna_latest_vers_tagged}"
elif [ "${custom_dna_version-null}" = "f" ]
then
export dna_selected_vers="${dna_latest_vers_final}"
echo "${y-}${b-}Installing | ${n-}latest-final version [${dna_selected_vers}]${y-} | of | ${n-}dna${y-} | as per | ${n-}-d f${y-} |.${x-}"
echo
git checkout "tags/${dna_latest_vers_final}"
else
export dna_selected_vers="${dna_version}"
echo "${b-}Installing | ${g-}version [${dna_selected_vers}]${n-} | of | ${g-}dna${n-} |.${x-}"
echo
git checkout "tags/${dna_version}"
fi
echo "${dna_selected_vers}" > "./version_installed"
)
fi
}
synthia-source_dna() {
for f in /root/openspace42/dna/functions/*
do
. $f
done
}
################################################################################
################################################################################
######################## Insert project functions here #########################
################################################################################
################################################################################
################################################################################
################################################################################
synthia-perform_installation() {
############################################################################
################### Add your install-time functions here ###################
############################################################################
dna-inception
############################################################################
############################################################################
############################################################################
}
################################################################################