This repository has been archived on 2025-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
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')