*.install: Instead of fancy `msg` use plain `echo`

Instead of relying on makepkg's built-in `msg` function simply use
`echo` without any coloring or similar beatifications.
master
Gordian Edenhofer 2017-11-11 13:03:58 +01:00
parent 93fc0e6a3d
commit a7d0166b3d
1 changed files with 9 additions and 10 deletions

View File

@ -5,24 +5,23 @@ _server_root="/srv/minecraft"
post_install() {
getent group "${_user}" &>/dev/null
if [ $? -ne 0 ]; then
echo -e "\e[34;1m==>\e[39;1m Adding ${_user} system group... \e[0m"
echo "Adding ${_user} system group..."
groupadd -r ${_user} 1>/dev/null
fi
getent passwd "${_user}" &>/dev/null
if [ $? -ne 0 ]; then
echo -e "\e[34;1m==>\e[39;1m Adding ${_user} system user... \e[0m"
echo "Adding ${_user} system user..."
useradd -r -g ${_user} -d "${_server_root}" ${_user} 1>/dev/null
fi
chown -R ${_user}:${_user} "${_server_root}"
echo -e "\e[34;1m==>\e[39;1m NOTE: The world data is stored under ${_server_root} and the server runs \e[0m"
echo -e "\e[34;1m==>\e[39;1m as ${_user} user to increase security. \e[0m"
echo -e "\e[34;1m==>\e[39;1m NOTE: Use the ${_game} script under /usr/bin/${_game}d to start, stop or backup the server \e[0m"
echo -e "\e[34;1m==>\e[39;1m and the configuration file under /etc/conf.d/${_game} to adjust it to your liking. \e[0m"
echo -e "\e[34;1m==>\e[39;1m NOTE: For the server to start you have to accept the EULA in ${_server_root}/eula.txt \e[0m"
echo -e "\e[34;1m==>\e[39;1m which is generated after the first server start. \e[0m"
echo "The world data is stored under ${_server_root} and the server runs as ${_user} user to increase security."
echo "Use the ${_game} script under /usr/bin/${_game}d to start, stop or backup the server."
echo "Adjust the configuration file under /etc/conf.d/${_game} to your liking."
echo "For the server to start you have to accept the EULA in ${_server_root}/eula.txt !"
echo "The EULA file is generated after the first server start."
}
post_upgrade() {
@ -31,6 +30,6 @@ post_upgrade() {
post_remove() {
# Notifying the user of kept dirs
[[ -d "${_server_root}" ]] && echo -e "\e[34;1m==>\e[39;1m NOTE: Game saves in ${_server_root} were kept on your system.\e[0m"
echo -e "\e[34;1m==>\e[39;1m NOTE: The ${_user} user was preserved on your system. \e[0m"
[[ -d "${_server_root}" ]] && echo "Game saves in ${_server_root} were kept on your system."
echo "The ${_user} user was preserved on your system."
}