cl_init

lvhailong / 2023-08-08 / 原文

!/usr/bin/bash

HOSTNAME=$(hostname -s)
yum -y install httpd
yum -y install python2-openstackclient
echo "OpenStack" > /var/www/html/index.html
echo $HOSTNAME >> /var/www/html/index.html
systemctl enable httpd --now