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

« back to all changes in this revision

Viewing changes to cloudinit/config/cc_scripts_vendor.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) 2014 Canonical Ltd.
4
 
#
5
 
#    Author: Ben Howard <ben.howard@canonical.com>
6
 
#
7
 
#    This program is free software: you can redistribute it and/or modify
8
 
#    it under the terms of the GNU General Public License version 3, as
9
 
#    published by the Free Software Foundation.
10
 
#
11
 
#    This program is distributed in the hope that it will be useful,
12
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#    GNU General Public License for more details.
15
 
#
16
 
#    You should have received a copy of the GNU General Public License
17
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
 
 
19
 
import os
20
 
 
21
 
from cloudinit import util
22
 
 
23
 
from cloudinit.settings import PER_INSTANCE
24
 
 
25
 
frequency = PER_INSTANCE
26
 
 
27
 
SCRIPT_SUBDIR = 'vendor'
28
 
 
29
 
 
30
 
def handle(name, cfg, cloud, log, _args):
31
 
    # This is written to by the vendor data handlers
32
 
    # any vendor data shell scripts get placed in runparts_path
33
 
    runparts_path = os.path.join(cloud.get_ipath_cur(), 'scripts',
34
 
                                 SCRIPT_SUBDIR)
35
 
 
36
 
    prefix = util.get_cfg_by_path(cfg, ('vendor_data', 'prefix'), [])
37
 
 
38
 
    try:
39
 
        util.runparts(runparts_path, exe_prefix=prefix)
40
 
    except Exception:
41
 
        log.warn("Failed to run module %s (%s in %s)",
42
 
                 name, SCRIPT_SUBDIR, runparts_path)
43
 
        raise