diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-09-24 14:45:31 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-09-24 14:45:31 -0400 |
commit | 54e11417c93b646746a704a5ea85b47c3831fed4 (patch) | |
tree | 1283b3e9f825b929b755174435cd34488a4b6d13 | |
parent | 0a4f91c84c096e0b0df2e5a1d42c38609ae7fa93 (diff) | |
download | vyos-cloud-init-54e11417c93b646746a704a5ea85b47c3831fed4.tar.gz vyos-cloud-init-54e11417c93b646746a704a5ea85b47c3831fed4.zip |
do not create 'sems' directory. 'sem' is proper instance/ path
-rw-r--r-- | cloudinit/stages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py index af902925..4ed1a750 100644 --- a/cloudinit/stages.py +++ b/cloudinit/stages.py @@ -240,7 +240,7 @@ class Init(object): return ds def _get_instance_subdirs(self): - return ['handlers', 'scripts', 'sems'] + return ['handlers', 'scripts', 'sem'] def _get_ipath(self, subname=None): # Force a check to see if anything |