summaryrefslogtreecommitdiffstats
path: root/meta-openstack
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack')
-rw-r--r--meta-openstack/classes/monitor.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-openstack/classes/monitor.bbclass b/meta-openstack/classes/monitor.bbclass
index 83aaea2..a959f09 100644
--- a/meta-openstack/classes/monitor.bbclass
+++ b/meta-openstack/classes/monitor.bbclass
@@ -19,7 +19,8 @@ def copy_check_files(d, check_var_name, src, dest):
19 for check in mon_checks.split(): 19 for check in mon_checks.split():
20 if os.path.exists(src + "/" + check): 20 if os.path.exists(src + "/" + check):
21 shutil.copy(src + "/" + check, dest) 21 shutil.copy(src + "/" + check, dest)
22 os.chmod(dest + "/" + check, 0755) 22 os.chmod(dest + "/" + check, 0o755)
23
23 24
24python do_monitor_install() { 25python do_monitor_install() {
25 import shutil 26 import shutil