blob: 08fb622f24b1476188ff3b20b9130ca2034b3b2e [file] [log] [blame]
azvyagintsev9a1737f2019-03-11 15:44:54 +02001#!/bin/bash -xe
2# Motd
3apt-get -y install update-motd
4rm -vf /etc/update-motd.d/*
5echo "BUILD_TIMESTAMP=$(date '+%Y-%m-%d-%H-%M-%S' -u)" > /etc/image_version
6echo "BUILD_TIMESTAMP_RFC=\"$(date -u -R)\"" >> /etc/image_version
7cat << 'EOF' >> /etc/update-motd.d/00-header-mirantis
8#!/bin/sh
9#
10# 00-header - create the header of the MOTD
11#
12[ -r /etc/image_version ] && . /etc/image_version
13echo "Ubuntu 18.04 \"Bionic\" Mirantis cloud image"
14echo "Build date: ${BUILD_TIMESTAMP_RFC}"
15EOF
16chmod +x /etc/update-motd.d/00-header-mirantis
17