*** derek has joined #gnuenterprise *** reinhard has joined #gnuenterprise good morning *** kilo has joined #gnuenterprise *** btami has joined #gnuenterprise *** jcater has joined #gnuenterprise *** btami has quit IRC *** kilo has quit IRC question to all debian studs a server crashed, but I have a backup of /var how can I do an apt-get install of all the packages that were installed on the server before? reinhard... this is quick and dirty so read over the code but.... ---- read.py ---- f = open("/var/lib/dpkg/status") package = None for line in f: if not line.strip(): package = None continue if line.startswith('Package:'): pack