#!/bin/sh -e

# Print the administration URL in the MOTD
# Use an ip address URL for now; this could get prettier in the future,
# perhaps using the hostname.

. /etc/eucalyptus/eucalyptus-ipaddr.conf
printf "\nUbuntu Enterprise Cloud Administration and Documentation\nhttps://%s:8443/\nhttp://www.ubuntu.com/cloud\n" "$CLOUD_IP_ADDR"
