X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=conf_files.py;h=8bc3186b1dd4931d3246259341663bfc6bee23c9;hb=703d54d277f2d2d077af2446c1a53970fa898aba;hp=da4c313e8e56013d769c550ad4aeeb2435d8c592;hpb=188be188d60d2999bd4577d686c60a0e7f2b27f8;p=nodemanager.git diff --git a/conf_files.py b/conf_files.py old mode 100644 new mode 100755 index da4c313..8bc3186 --- a/conf_files.py +++ b/conf_files.py @@ -1,17 +1,16 @@ +#!/usr/bin/env python3 + """configuration files""" import grp import os import pwd -try: - from hashlib import sha1 as sha -except ImportError: - from sha import sha +from hashlib import sha1 as sha +import xmlrpc.client import curlwrapper import logger import tools -import xmlrpc.client from config import Config # right after net @@ -37,7 +36,8 @@ class conf_files: else: return 0 def update_conf_file(self, cf_rec): - if not cf_rec['enabled']: return + if not cf_rec['enabled']: + return dest = cf_rec['dest'] err_cmd = cf_rec['error_cmd'] mode = int(cf_rec['file_permissions'], base=8) @@ -54,8 +54,8 @@ class conf_files: url = 'https://%s/%s' % (self.config.PLC_BOOT_HOST, cf_rec['source']) # set node_id at the end of the request - hacky if tools.node_id(): - if url.find('?') >0: url += '&' - else: url += '?' + if url.find('?') > 0: url += '&' + else: url += '?' url += "node_id=%d"%tools.node_id() else: logger.log('conf_files: %s -- WARNING, cannot add node_id to request'%dest)