によって提供されたこのコードをチェックしてpython_apt
いますが、少し古くなっているようです。
https://github.com/jolicloud/python-apt/blob/master/doc/examples/inst.py
ここで私がやろうとしているのは、commit()
メソッドの進行状況を追跡することだけです。現在、とを呼び出しcommit()
て渡すfprogress
とiprogress
、コンソールで、内のすべてのパッケージpkg_list
が正しくダウンロードされていることがわかります。この後、問題が発生しているようです。
dpkg_status_change()
プログラムは実行を継続しますが、私が信じているようにトリガーされませんか?
複数のパッケージのインストールが成功したかどうかを知る方法がありませんか?
import apt
from apt.progress.base import InstallProgress
class InstallStatusUpdate(InstallProgress):
def conffile(self, current, new):
print "conffile prompt: %s %s" % (current, new)
def processing(self, pkg, stage):
print "Processing ", pkg, " stage: ", stage
def error(self, pkg, errormsg):
print "Package ", pkg, " error: ", errormsg
def finish_update(self):
print "Installation is complete"
def status_change(self, pkg, percent, status):
print "Package: ", pkg, " at ", percent, " -> ", status
def dpkg_status_change(self, pkg, status):
print "Package ", pkg, ", Status: ", status
def install_updates(self, pkg_list):
fprogress = apt.progress.TextFetchProgress()
iprogress = InstallStatusUpdate()
cache_tmp = apt.Cache()
cache_tmp.update()
cache_tmp.open(None)
for pkg in pkg_list:
try:
self.pkgname = cache_tmp[pkg.name]
if self.pkgname.is_installed and self.pkgname.is_upgradable:
self.pkgname.mark_upgrade()
else:
self.pkgname.mark_install()
except Exception as e:
print e.message
result = self.pkgname.commit(fprogress, iprogress)
#Maybe i'm doing something wrong here but result always = None...