class LxcNode(SimpleLxcNode):
    ''' I added the following line...   '''
    confdir = "/usr/local/etc/quagga"
    
    def __init__(self, session, objid = None, name = None,
                 nodedir = None, bootsh = "boot.sh", verbose = False,
                 start = True):
        super(LxcNode, self).__init__(session = session, objid = objid,
                                      name = name, nodedir = nodedir,
                                      verbose = verbose, start = start)
        self.bootsh = bootsh
        if start:
            self.startup()
    
    ''' ...and the following two functions. '''
    def bootscript(self):
        return ""

    def config(self):
        tmp = self.bootscript()
        if tmp:
            self.nodefile(self.bootsh, tmp, mode = 0755)
    
    '''      [...]      '''
