~cloud-init-dev/cloud-init/trunk

« back to all changes in this revision

Viewing changes to cloudinit/config/cc_final_message.py

  • Committer: Scott Moser
  • Date: 2016-08-10 15:06:15 UTC
  • Revision ID: smoser@ubuntu.com-20160810150615-ma2fv107w3suy1ma
README: Mention move of revision control to git.

cloud-init development has moved its revision control to git.
It is available at 
  https://code.launchpad.net/cloud-init

Clone with 
  git clone https://git.launchpad.net/cloud-init
or
  git clone git+ssh://git.launchpad.net/cloud-init

For more information see
  https://git.launchpad.net/cloud-init/tree/HACKING.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vi: ts=4 expandtab
2
 
#
3
 
#    Copyright (C) 2011 Canonical Ltd.
4
 
#    Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
5
 
#
6
 
#    Author: Scott Moser <scott.moser@canonical.com>
7
 
#    Author: Juerg Haefliger <juerg.haefliger@hp.com>
8
 
#
9
 
#    This program is free software: you can redistribute it and/or modify
10
 
#    it under the terms of the GNU General Public License version 3, as
11
 
#    published by the Free Software Foundation.
12
 
#
13
 
#    This program is distributed in the hope that it will be useful,
14
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
#    GNU General Public License for more details.
17
 
#
18
 
#    You should have received a copy of the GNU General Public License
19
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 
 
21
 
from cloudinit import templater
22
 
from cloudinit import util
23
 
from cloudinit import version
24
 
 
25
 
from cloudinit.settings import PER_ALWAYS
26
 
 
27
 
frequency = PER_ALWAYS
28
 
 
29
 
# Jinja formated default message
30
 
FINAL_MESSAGE_DEF = (
31
 
    "## template: jinja\n"
32
 
    "Cloud-init v. {{version}} finished at {{timestamp}}."
33
 
    " Datasource {{datasource}}.  Up {{uptime}} seconds"
34
 
)
35
 
 
36
 
 
37
 
def handle(_name, cfg, cloud, log, args):
38
 
 
39
 
    msg_in = ''
40
 
    if len(args) != 0:
41
 
        msg_in = str(args[0])
42
 
    else:
43
 
        msg_in = util.get_cfg_option_str(cfg, "final_message", "")
44
 
 
45
 
    msg_in = msg_in.strip()
46
 
    if not msg_in:
47
 
        msg_in = FINAL_MESSAGE_DEF
48
 
 
49
 
    uptime = util.uptime()
50
 
    ts = util.time_rfc2822()
51
 
    cver = version.version_string()
52
 
    try:
53
 
        subs = {
54
 
            'uptime': uptime,
55
 
            'timestamp': ts,
56
 
            'version': cver,
57
 
            'datasource': str(cloud.datasource),
58
 
        }
59
 
        subs.update(dict([(k.upper(), v) for k, v in subs.items()]))
60
 
        util.multi_log("%s\n" % (templater.render_string(msg_in, subs)),
61
 
                       console=False, stderr=True, log=log)
62
 
    except Exception:
63
 
        util.logexc(log, "Failed to render final message template")
64
 
 
65
 
    boot_fin_fn = cloud.paths.boot_finished
66
 
    try:
67
 
        contents = "%s - %s - v. %s\n" % (uptime, ts, cver)
68
 
        util.write_file(boot_fin_fn, contents)
69
 
    except Exception:
70
 
        util.logexc(log, "Failed to write boot finished file %s", boot_fin_fn)
71
 
 
72
 
    if cloud.datasource.is_disconnected:
73
 
        log.warn("Used fallback datasource")