16 lines
306 B
Plaintext
16 lines
306 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
###########
|
||
|
## novnc ##
|
||
|
###########
|
||
|
|
||
|
. /usr/lib/eole/utils.sh
|
||
|
|
||
|
# Install ssl files
|
||
|
user=$(systemctl -p Group show --value opennebula-novnc)
|
||
|
group=$(systemctl -p User show --value opennebula-novnc)
|
||
|
novnc_conf_dir="/etc/one"
|
||
|
InstallSSLFiles novnc $user $group ${novnc_conf_dir}/ssl root
|
||
|
|
||
|
exit 0
|