summaryrefslogtreecommitdiff
path: root/cloudinit/execute.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2011-12-20 12:02:39 -0500
committerScott Moser <smoser@ubuntu.com>2011-12-20 12:02:39 -0500
commitb17a271da699230be8dad5d8c0227a5c7c238503 (patch)
treefc0f9419f83f8533cf6d6259b45c195795f4bb94 /cloudinit/execute.py
parent13015ef25fa7e748e916c99f083e338b28861a18 (diff)
parent57a28850fae6098a32e7c16ab90541fd785684cb (diff)
downloadvyos-cloud-init-b17a271da699230be8dad5d8c0227a5c7c238503.tar.gz
vyos-cloud-init-b17a271da699230be8dad5d8c0227a5c7c238503.zip
add INSTANCE_ID to env of bootcmd, add cloud-init-per
the environment varible INSTANCE_ID is set when invoking boothooks from multi-part input. However, previously that was not the case for things run via bootcmd. This adds cloud-init-per, which makes it easy for user in bootcmd or boothook to do something per 'instance', 'always', or 'once'. The functionality in cloud-init-per mostly duplicated what was in cloud-init-run-module. That supported "modules", but it is unlikely that it was used for anything other than "execute". So, cloud-init-per now replaces cloud-init-run-module and provides legacy support for the 'execute' path.
Diffstat (limited to 'cloudinit/execute.py')
-rw-r--r--cloudinit/execute.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/cloudinit/execute.py b/cloudinit/execute.py
deleted file mode 100644
index 17c3ad69..00000000
--- a/cloudinit/execute.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# vi: ts=4 expandtab
-#
-# Copyright (C) 2009-2010 Canonical Ltd.
-#
-# Author: Scott Moser <scott.moser@canonical.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 3, as
-# published by the Free Software Foundation.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-def run(args,cfg,log):
- import subprocess
- import traceback
- try:
- subprocess.check_call(args)
- return
- except subprocess.CalledProcessError as e:
- log.debug(traceback.format_exc(e))
- raise Exception("Cmd returned %s: %s" % ( e.returncode, args ))
- except OSError as e:
- log.debug(traceback.format_exc(e))
- raise Exception("Cmd failed to execute: %s" % ( args ))