mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
add support openEuler
Signed-off-by: Lv Genggeng <lvgenggeng@uniontech.com>
This commit is contained in:
parent
df13d762a9
commit
73201ebc8f
2 changed files with 75 additions and 1 deletions
38
webvirtcloud.sh
Normal file → Executable file
38
webvirtcloud.sh
Normal file → Executable file
|
|
@ -119,7 +119,7 @@ install_packages () {
|
|||
fi
|
||||
done;
|
||||
;;
|
||||
fedora|uos)
|
||||
fedora|uos|openEuler)
|
||||
for p in $PACKAGES; do
|
||||
if dnf list installed "$p" >/dev/null 2>&1; then
|
||||
echo " * $p already installed"
|
||||
|
|
@ -352,6 +352,15 @@ case $distro in
|
|||
supervisor_conf_path=/etc/supervisord.d
|
||||
supervisor_file_name=webvirtcloud.ini
|
||||
;;
|
||||
*OpenEuler*|*openEuler*)
|
||||
echo " The installer has detected $distro version $version."
|
||||
distro=openEuler
|
||||
nginx_group=nginx
|
||||
nginxfile=/etc/nginx/conf.d/$APP_NAME.conf
|
||||
supervisor_service=supervisord
|
||||
supervisor_conf_path=/etc/supervisord.d
|
||||
supervisor_file_name=webvirtcloud.ini
|
||||
;;
|
||||
*)
|
||||
echo " The installer was unable to determine your OS. Exiting for safety."
|
||||
exit 1
|
||||
|
|
@ -525,6 +534,33 @@ case $distro in
|
|||
restart_nginx
|
||||
fi
|
||||
;;
|
||||
openEuler)
|
||||
if [[ "$version" == "20.03" ]]; then
|
||||
# Install for openEuler 20.03
|
||||
tzone=\'$(timedatectl|grep "Time zone"| awk '{print $3}')\'
|
||||
|
||||
echo "* Installing OS requirements."
|
||||
PACKAGES="git python3-virtualenv python3-devel python3-pip libvirt-devel glibc gcc nginx supervisor python3-lxml python3-libguestfs iproute-tc cyrus-sasl-md5"
|
||||
install_packages
|
||||
|
||||
set_hosts
|
||||
|
||||
install_webvirtcloud
|
||||
|
||||
echo "* Configuring Nginx."
|
||||
configure_nginx
|
||||
|
||||
echo "* Configuring Supervisor."
|
||||
configure_supervisor
|
||||
|
||||
set_firewall
|
||||
|
||||
set_selinux
|
||||
|
||||
restart_supervisor
|
||||
restart_nginx
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue