Commit 7067fcd5 authored by Никита Ефремов's avatar Никита Ефремов Committed by Никита Ефремов

Debug

parent cc4ec1d6
......@@ -9,6 +9,7 @@ import abc
from . import config
from . import tools
from .service_decorators import *
##### Private classes #####
......
......@@ -3,5 +3,4 @@
__all__ = ["common", "network", "os"]
from .common import ValidatorError
......@@ -12,6 +12,7 @@ from os import path
SERVICE_NAME = "ssl"
SSL_METHODS_NAMESPACE = "ssl"
CERTS_DIR = config.value(SERVICE_NAME, "cert_dir")
CERT_NAME = 'serv'
PEMFILE = path.join(CERTS_DIR, CERT_NAME + '.pem')
KEYFILE = path.join(CERTS_DIR, CERT_NAME + '.key')
......
......@@ -86,8 +86,6 @@ class Server(object) :
###
def initBus(self) :
import pdb
pdb.set_trace()
bus_type = config.value(config.APPLICATION_SECTION, "bus_type")
service_name = config.value(config.APPLICATION_SECTION, "service_name")
......
......@@ -9,6 +9,7 @@ import abc
from . import config
from . import tools
from .service_decorators import *
##### Private classes #####
......
......@@ -3,5 +3,4 @@
__all__ = ["common", "network", "os"]
from .common import ValidatorError
#!/usr/bin/env python
#!/usr/bimin/env python
# -*- coding: utf-8 -*-
......@@ -15,7 +15,7 @@ from settingsd import const
##### Private constants #####
packages_list = ["settingsd", "settingsd/tools", "settingsd/validators"]
scripts_list = ["settingsd-server.py"]
install_requires = ['file_read_backwards']
#####
data_files_list = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment