pamac-classic/pamac-check-updates
2013-02-22 16:43:52 +01:00

14 lines
296 B
Python
Executable File

#! /usr/bin/python
# -*-coding:utf-8-*-
from pamac import common, transaction
if not common.pid_file_exists():
print('checking updates')
common.write_pid_file()
transaction.Refresh()
transaction.TransactionDone()
transaction.StopDaemon()
common.rm_pid_file()
print('check updates done')