/usr/bin/loofah-update is in python-loofah 0.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #! /usr/bin/python
import loofah.core
import sys
a = sys.argv
if len(a) > 1:
loofah.core.VERSION_NAME = a[1]
if len(a) > 2:
loofah.core.SUITE = a[2]
from loofah.sources import digest_sources
print("Digesting from remote")
sources = digest_sources()
print("Saving objects")
sources.save()
print("Done.")
|