aboutsummaryrefslogtreecommitdiff
path: root/tools/make-installers
blob: 3a95271a4e4eb077269a331822c7971d9fa5f3ad (plain) (blame)
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#!/bin/sh

# Build installers for Linux/x64 and Linux/arm64.
#
# Author: Holger Weiss <holger@zedat.fu-berlin.de>.
#
# Copyright (c) 2022 ProcessOne, SARL.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -e
set -u

myself=${0##*/}
architectures='x64 arm64'
iteration=1

usage()
{
	echo >&2 "Usage: $myself [-i <iteration>]"
	exit 2
}

while getopts i: opt
do
	case $opt in
	i)
		iteration="$OPTARG"
		;;
	\?)
		usage
		;;
	esac
done
shift $((OPTIND - 1))

if ! [ -e 'mix.exs' ] || ! [ -e "tools/$myself" ]
then
	echo >&2 "Please call this script from the repository's root directory."
	exit 2
elif [ $# -ne 0 ]
then
	usage
fi
if type 'makeself' >'/dev/null'
then makeself='makeself'
elif type 'makeself.sh' >'/dev/null'
then makeself='makeself.sh'
else
	echo >&2 'This script requires makeself: https://makeself.io'
	exit 1
fi

rel_name='ejabberd'
rel_vsn=$(git describe --tags | sed -e 's/-g.*//' -e 's/-/./' | tr -d '[:space:]')
code_path="/opt/$rel_name-$rel_vsn"
data_path="/opt/$rel_name"
conf_path="$data_path/conf"
pem_file="$conf_path/server.pem"
url='https://docs.ejabberd.im/admin/upgrade/#specific-version-upgrade-notes'
url_doc_admin='https://docs.ejabberd.im/admin/installation/#administration-account'
tmp_dir=$(mktemp -d "/tmp/.$rel_name.XXXXXX")
path_uninstall="$code_path/uninstall.txt"

trap 'rm -rf "$tmp_dir"' INT TERM EXIT
umask 022

create_help_file()
{
	local file="$1"

	cat >"$file" <<-EOF
	This is the $rel_name $rel_vsn-$iteration installer for linux-$arch

	Visit
	  https://www.ejabberd.im/

	ejabberd Documentation site:
	  https://docs.ejabberd.im/
        
	EOF
}

create_setup_script()
{
	local dir="$1"
	local tarball="$2"

	cat >"$dir/setup" <<-EOF
	#!/bin/sh

	set -e
	set -u

	export PATH='/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin'

	user_agrees()
	{
		local question="\$*"

		if [ -t 0 ]
		then
			read -p "\$question (y/n) [n] " response
			response="\$(printf '%s' "\$response" |
			             tr '[:upper:]' '[:lower:]')"
			if [ "\$response" = 'y' ] || [ "\$response" = 'yes' ]
			then return 0
			else return 1
			fi
		else # Assume 'yes' if not running interactively.
			return 0
		fi
	}

	if [ \$(id -u) != 0 ]
	then
		echo >&2 'The installer must be run with superuser privileges.'
		exit 1
	fi

	if [ -e '/run/systemd/system' ]
	then is_systemd=true
	else is_systemd=false
	fi
	if [ -e '$data_path' ]
	then is_upgrade=true
	else is_upgrade=false
	fi
	if id -u '$rel_name' >'/dev/null' 2>&1
	then user_exists=true
	else user_exists=false
	fi

	echo
	echo 'The following installation paths will be used:'
	echo '- $code_path'
	if [ \$is_upgrade = true ]
	then echo "- $data_path (existing files won't be modified)"
	else echo '- $data_path'
	fi
	if [ \$is_systemd = true ]
	then echo '- /etc/systemd/system/$rel_name.service'
	fi
	if [ \$user_exists = false ]
	then echo 'The $rel_name user is going to be created.'
	fi
	if [ \$is_systemd = true ] && [ \$is_upgrade = false ]
	then echo 'The $rel_name service is going to be enabled and started.'
	fi
	if ! user_agrees 'Install $rel_name $rel_vsn now?'
	then
		echo 'Aborting installation.'
		exit 1
	fi
	echo

	if [ \$user_exists = false ]
	then useradd -r -d '$data_path' '$rel_name'
	fi

	host=\$(hostname --fqdn 2>'/dev/null' || :)
	if [ -z "\$host" ]
	then host='localhost'
	fi

	tar --skip-old-files -C "\$(dirname '$code_path')" -xf '$tarball'
	chown -R -h 'root:root' '$code_path'
	chown 'root:$rel_name' '$code_path/lib/epam-'*'/priv/bin/epam'
	chmod '4750' '$code_path/lib/epam-'*'/priv/bin/epam'
	if [ \$is_upgrade = false ]
	then
		sed -i "s/ - localhost$/ - \$host/" '$conf_path/$rel_name.yml'
		openssl req -x509 \
		            -batch \
		            -nodes \
		            -newkey rsa:4096 \
		            -keyout '$pem_file' \
		            -out '$pem_file' \
		            -days 3650 \
		            -subj "/CN=\$host" >'/dev/null' 2>&1 || :
		if [ -e '$pem_file' ]
		then chown '$rel_name:$rel_name' '$pem_file'
		else echo 'Failed to create a TLS certificate for ejabberd.' >&2
		fi
	fi

	if [ \$is_systemd = true ]
	then
		cp '$code_path/bin/$rel_name.service' '/etc/systemd/system/'
		systemctl -q daemon-reload
		if [ \$is_upgrade = false ]
		then systemctl -q --now enable '$rel_name'
		fi
	elif [ \$is_upgrade = false ]
	then
		echo 'You might want to install an init script (see the'
		echo '$code_path/bin directory for an example).'
	fi
	echo '$rel_name $rel_vsn has been installed successfully.'
	echo

	echo >$path_uninstall
	echo '# To uninstall ejabberd, first remove the service:' >>$path_uninstall
	echo 'systemctl --now disable ejabberd' >>$path_uninstall
	echo 'rm -rf /etc/systemd/system/ejabberd.service' >>$path_uninstall
	echo >>$path_uninstall
	echo '# Remove the binary files' >>$path_uninstall
	echo 'rm -rf /opt/ejabberd-*' >>$path_uninstall
	echo >>$path_uninstall
	echo '# If you want to remove your config, database and logs:' >>$path_uninstall
	echo 'rm -rf /opt/ejabberd' >>$path_uninstall

	if [ \$is_upgrade = true ]
	then
		echo 'Please check the following web site for upgrade notes:'
		echo
		echo '$url'
		echo
		echo 'If everything looks fine, restart the $rel_name service:'
		echo '  systemctl restart ejabberd'
	else
		echo 'Now you can check ejabberd is running correctly:'
		echo '  systemctl status ejabberd'
		echo
		echo 'Next you may want to edit ejabberd.yml to setup hosts,'
		echo 'register an account and grant it admin rigts, see:'
		echo '$url_doc_admin'
	fi
	EOF
	chmod +x "$dir/setup"
}

for arch in $architectures
do
	tar_name="$rel_name-$rel_vsn-linux-$arch.tar"
	tgz_name="$tar_name.gz"
	installer_name="$rel_name-$rel_vsn-$iteration-linux-$arch.run"

	test -e "$tgz_name" || tools/make-binaries
	echo "$myself: Putting together installer for $arch ..."
	gzip -c -d <"$tgz_name" >"$tmp_dir/$tar_name"
        create_help_file "$tmp_dir/help.txt"
	create_setup_script "$tmp_dir" "$tar_name"
	"$makeself" --help-header "$tmp_dir/help.txt" "$tmp_dir" "$installer_name" "$rel_name $rel_vsn" './setup'
	find "$tmp_dir" -mindepth 1 -delete
done
echo "$myself: Created installers successfully."