本文整理汇总了Python中synctool_pkgclass.SyncPkg.upgrade方法的典型用法代码示例。如果您正苦于以下问题:Python SyncPkg.upgrade方法的具体用法?Python SyncPkg.upgrade怎么用?Python SyncPkg.upgrade使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类synctool_pkgclass.SyncPkg
的用法示例。
在下文中一共展示了SyncPkg.upgrade方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: upgrade
# 需要导入模块: from synctool_pkgclass import SyncPkg [as 别名]
# 或者: from synctool_pkgclass.SyncPkg import upgrade [as 别名]
def upgrade(self):
SyncPkg.upgrade(self)
if self.dryrun:
cmd = 'brew outdated'
else:
cmd = 'brew upgrade'
synctool_lib.DRY_RUN = False
synctool_lib.shell_command(cmd)
synctool_lib.DRY_RUN = self.dryrun
示例2: upgrade
# 需要导入模块: from synctool_pkgclass import SyncPkg [as 别名]
# 或者: from synctool_pkgclass.SyncPkg import upgrade [as 别名]
def upgrade(self):
SyncPkg.upgrade(self)
synctool_lib.DRY_RUN = False
if self.dryrun:
cmd = "pacman -Qu --noconfirm" # query updates
else:
cmd = "pacman -Su --noconfirm" # do upgrade
synctool_lib.shell_command(cmd)
synctool_lib.DRY_RUN = self.dryrun
示例3: upgrade
# 需要导入模块: from synctool_pkgclass import SyncPkg [as 别名]
# 或者: from synctool_pkgclass.SyncPkg import upgrade [as 别名]
def upgrade(self):
SyncPkg.upgrade(self)
os.putenv('DEBIAN_FRONTEND', 'noninteractive')
if self.dryrun:
cmd = 'apt-get -s upgrade' # --simulate
else:
cmd = 'apt-get -y upgrade'
synctool_lib.DRY_RUN = False
synctool_lib.shell_command(cmd)
synctool_lib.DRY_RUN = self.dryrun
示例4: upgrade
# 需要导入模块: from synctool_pkgclass import SyncPkg [as 别名]
# 或者: from synctool_pkgclass.SyncPkg import upgrade [as 别名]
def upgrade(self):
SyncPkg.upgrade(self)
os.putenv("DEBIAN_FRONTEND", "noninteractive")
if self.dryrun:
cmd = "apt-get -s upgrade" # --simulate
else:
cmd = "apt-get -y upgrade"
synctool_lib.DRY_RUN = False
synctool_lib.shell_command(cmd)
synctool_lib.DRY_RUN = self.dryrun
示例5: upgrade
# 需要导入模块: from synctool_pkgclass import SyncPkg [as 别名]
# 或者: from synctool_pkgclass.SyncPkg import upgrade [as 别名]
def upgrade(self):
SyncPkg.upgrade(self)
if os.uname()[0] == 'FreeBSD':
# FreeBSD has no pkg_add -u, but freebsd-update instead
if self.dryrun:
cmd = 'freebsd-update fetch'
else:
cmd = 'freebsd-update fetch install'
else:
# OpenBSD/NetBSD/other BSD, use pkg_add -u
if self.dryrun:
cmd = 'pkg_add -uvn'
else:
cmd = 'pkg_add -uv'
synctool_lib.DRY_RUN = False
synctool_lib.shell_command(cmd)
synctool_lib.DRY_RUN = self.dryrun