当前位置: 首页>>代码示例>>Python>>正文


Python System.is_running_systemd方法代码示例

本文整理汇总了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()
开发者ID:ITDevLtd,项目名称:MCVirt,代码行数:23,代码来源:libvirt_config.py


注:本文中的mcvirt.system.System.is_running_systemd方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。