forked from cromer/pamac-classic
23 lines
462 B
Python
23 lines
462 B
Python
#! /usr/bin/pkexec /usr/bin/python3
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from pamac import common, config
|
|
|
|
if not common.pid_file_exists():
|
|
print('refreshing')
|
|
handle = config.handle()
|
|
for db in handle.get_syncdbs():
|
|
try:
|
|
t = handle.init_transaction()
|
|
db.update(force = False)
|
|
t.release()
|
|
except:
|
|
try:
|
|
t.release()
|
|
except:
|
|
pass
|
|
print('refreshing {} failed'.format(db.name))
|
|
break
|
|
else:
|
|
print('refreshing {} succeeded'.format(db.name))
|