房贷首付

来源:互联网 发布:java中函数调用 编辑:程序博客网 时间:2024/05/17 08:24
# Install Images# ==============# Upload an image to glance.## The default image is cirros, a small testing image which lets you login as **root**# cirros has a ``cloud-init`` analog supporting login via keypair and sending# scripts as userdata.# See https://help.ubuntu.com/community/CloudInit for more on cloud-init## Override ``IMAGE_URLS`` with a comma-separated list of UEC images.#  * **oneiric**: http://uec-images.ubuntu.com/oneiric/current/oneiric-server-cloudimg-amd64.tar.gz#  * **precise**: http://uec-images.ubuntu.com/precise/current/precise-server-cloudimg-amd64.tar.gzif is_service_enabled g-reg; then    TOKEN=$(keystone token-get | grep ' id ' | get_field 2)    if is_baremetal; then       echo_summary "Creating and uploading baremetal images"       # build and upload separate deploy kernel & ramdisk       upload_baremetal_deploy $TOKEN       # upload images, separating out the kernel & ramdisk for PXE boot       for image_url in ${IMAGE_URLS//,/ }; do           upload_baremetal_image $image_url $TOKEN       done    else       echo_summary "Uploading images"       # Option to upload legacy ami-tty, which works with xenserver       if [[ -n "$UPLOAD_LEGACY_TTY" ]]; then           IMAGE_URLS="${IMAGE_URLS:+${IMAGE_URLS},}https://github.com/downloads/citrix-openstack/warehouse/tty.tgz"       fi       for image_url in ${IMAGE_URLS//,/ }; do           upload_image $image_url $TOKEN       done    fifi

原创粉丝点击