本文整理汇总了Python中mcvirt.system.System.is_running_systemd方法的典型用法代码示例。如果您正苦于以下问题:Python System.is_running_systemd方法的具体用法?Python System.is_running_systemd怎么用?Python System.is_running_systemd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mcvirt.system.System
的用法示例。
在下文中一共展示了System.is_running_systemd方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: generate_config
# 需要导入模块: from mcvirt.system import System [as 别名]
# 或者: from mcvirt.system.System import is_running_systemd [as 别名]
def generate_config(self):
"""Generate the libvirtd configuration"""
libvirt_config = self.get_config()
# Replace the variables in the template with the local libvirtd configuration
config_content = Template(file=self.CONFIG_TEMPLATE, searchList=[libvirt_config])
# Write the libvirt configurations
with open(self.CONFIG_FILE, 'w') as fh:
fh.write(config_content.respond())
if System.is_running_systemd():
default_config = self.DEFAULT_CONFIG % ''
else:
default_config = self.DEFAULT_CONFIG % '-d '
with open(self.DEFAULT_FILE % self.service_name, 'w') as default_fh:
default_fh.write(default_config)
# Update Drbd running configuration
self._reload_libvirt()