blob: 73d9792c1ab0e9a84cb113b26325b58d413be5ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
# Copyright (C) 2010 Canonical Ltd.
#
# Authors: Scott Moser <smoser@ubuntu.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
# 92-ec2-upgrade-available - update-motd script
# Determining if updates are available is possibly slow.
# a cronjob runs occasioinally and updates a file with information
# on the latest available release (if newer than current)
BUILD_FILE=/var/lib/cloud/data/available.build
[ -s "${BUILD_FILE}" ] || exit 0
read suite build_name name serial other < "${BUILD_FILE}"
cat <<EOF
A newer build of the Ubuntu ${suite} ${build_name} image is available.
It is named '${name}' and has build serial '${serial}'.
EOF
|