Esempio n. 1
0
	def get_outputs(self):
		outputs = install_scripts.get_outputs(self)
		fn = None
		for fn in outputs:
			if os.path.basename(fn) == 'fail2ban-server':
				break
		bindir = os.path.dirname(fn)
		print('creating fail2ban-python binding -> %s' % (bindir,))
		updatePyExec(bindir)
		return outputs
Esempio n. 2
0
 def get_outputs(self):
     outputs = install_scripts.get_outputs(self)
     fn = None
     for fn in outputs:
         if os.path.basename(fn) == 'fail2ban-server':
             break
     bindir = os.path.dirname(fn)
     print('creating fail2ban-python binding -> %s' % (bindir, ))
     updatePyExec(bindir)
     return outputs
Esempio n. 3
0
 def get_outputs(self):
     outputs = _install_scripts.get_outputs(self)
     if not self.skip_profile:
         outputs.append(self.profile_file)
     return outputs
Esempio n. 4
0
 def get_outputs(self):
     outputs = _install_scripts.get_outputs(self)
     if not self.skip_profile:
         outputs.append(self.profile_file)
     return outputs
Esempio n. 5
0
 def get_outputs(self):
     outputs = install_scripts.get_outputs(self)
     return outputs + [self.output]