/usr/share/pyshared/landscape/sysinfo/landscapelink.py is in landscape-common 12.04.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | from twisted.internet.defer import succeed
class LandscapeLink(object):
def register(self, sysinfo):
self._sysinfo = sysinfo
def run(self):
self._sysinfo.add_footnote(
"Graph this data and manage this system at "
"https://landscape.canonical.com/")
return succeed(None)
|