mount_point/qcloud_action/os.conf
情報を読み取って設定します。ユーザーはほかの設定データとUserDataを利用するニーズがある場合、 直接mount_point/
配下のファイルを読み取ることができます。hostname=VM_10_20_xxxxpassword=GRSgae1fw9frsG.rfrFeth0_ip_addr=10.104.62.201eth0_mac_addr=52:54:00:E1:96:EBeth0_netmask=255.255.192.0eth0_gateway=10.104.0.1dns_nameserver="10.138.224.65 10.182.20.26 10.182.24.12"
パラメータ名 | パラメータ意味 |
hostname | ホスト名 |
password | 暗号化したパスワード |
eth0_ip_addr | eth0 ENIのLAN IP |
eth0_mac_addr | eth0 ENIの MAC アドレス |
eth0_netmask | eth0 ENIのサブネットマスク |
eth0_gateway | eth0 ENIのゲートウェイ |
dns_nameserver | DNS 解析サーバー |
/dev/cdrom
をマウントする必要があり、マウントポイントのqcloud_action/os.conf
ファイルを読み取って、設定情報を取得します。chpasswd -e
方式を使用して設定します。
暗号化されたパスワードには特別な文字が含まれる可能性があり、まずファイルの中に入力してから、 chpasswd -e < passwd_file
方式で設定することを推薦します。os_config
スクリプトを作成する。
ユーザーは実際状況に応じて os_config
スクリプトを修正します。#!/bin/bash### BEGIN INIT INFO# Provides: os-config# Required-Start: $local_fs $network $named $remote_fs# Required-Stop:# Should-Stop:# Default-Start: 2 3 4 5# Default-Stop: 0 1 6# Short-Description: config of os-init job# Description: run the config phase without cloud-init### END INIT INFO###################user settings#####################cdrom_path=`blkid -L config-2`load_os_config() {mount_path=$(mktemp -d /mnt/tmp.XXXX)mount /dev/cdrom $mount_pathif [[ -f $mount_path/qcloud_action/os.conf ]]; then. $mount_path/qcloud_action/os.confif [[ -n $password ]]; thenpasswd_file=$(mktemp /mnt/pass.XXXX)passwd_line=$(grep password $mount_path/qcloud_action/os.conf)echo root:${passwd_line#*=} > $passwd_filefireturn 0elsereturn 1fi}cleanup() {umount /dev/cdromif [[ -f $passwd_file ]]; thenecho $passwd_filerm -f $passwd_filefiif [[ -d $mount_path ]]; thenecho $mount_pathrm -rf $mount_pathfi}config_password() {if [[ -f $passwd_file ]]; thenchpasswd -e < $passwd_filefi}config_hostname(){if [[ -n $hostname ]]; thensed -i "/^HOSTNAME=.*/d" /etc/sysconfig/networkecho "HOSTNAME=$hostname" >> /etc/sysconfig/networkfi}config_dns() {if [[ -n $dns_nameserver ]]; thendns_conf=/etc/resolv.confsed -i '/^nameserver.*/d' $dns_conffor i in $dns_nameserver; doecho "nameserver $i" >> $dns_confdonefi}config_network() {/etc/init.d/network stopcat << EOF > /etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0IPADDR=$eth0_ip_addrNETMASK=$eth0_netmaskHWADDR=$eth0_mac_addrONBOOT=yesGATEWAY=$eth0_gatewayBOOTPROTO=staticEOFif [[ -n $hostname ]]; thensed -i "/^${eth0_ip_addr}.*/d" /etc/hostsecho "${eth0_ip_addr} $hostname" >> /etc/hostsfi/etc/init.d/network start}config_gateway() {sed -i "s/^GATEWAY=.*/GATEWAY=$eth0_gateway" /etc/sysconfig/network}###################init#####################start() {if load_os_config ; thenconfig_passwordconfig_hostnameconfig_dnsconfig_networkcleanupexit 0elseecho "mount ${cdrom_path} failed"exit 1fi}RETVAL=0case "$1" instart)startRETVAL=$?;;*)echo "Usage: $0 {start}"RETVAL=3;;esacexit $RETVAL
/etc/init.d/
ディレクトリにos_config
スクリプトを設置して、以下のコマンドを実行します。chmod +x /etc/init.d/os_configchkconfig --add os_config
os_config
は起動サービスに追加されたかどうかを確認します。chkconfig --list
この記事はお役に立ちましたか?