/usr/sbin/rhn-profile-sync is in rhn-client-tools 1.8.9-3.
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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #!/usr/bin/python
#
# Red Hat Network registration tool
# Adapted from wrapper.py
# Copyright (c) 1999-2006 Red Hat, Inc. Distributed under GPLv2.
#
# Authors:
# Adrian Likins <alikins@redhat.com>
# Preston Brown <pbrown@redhat.com>
# James Bowes <jbowes@redhat.com>
import sys
import gettext
t = gettext.translation('rhn-client-tools', fallback=True)
_ = t.ugettext
sys.path.append("/usr/share/rhn/")
from up2date_client import up2dateAuth
from up2date_client import rhncli
from up2date_client import rhnPackageInfo
from up2date_client import rhnHardware
try:
from virtualization import support
except ImportError:
support = None
class ProfileCli(rhncli.RhnCli):
def main(self):
if not up2dateAuth.getSystemId():
needToRegister = \
_("You need to register this system by running " \
"`rhn_register` before using this option")
print needToRegister
sys.exit(1)
if not self._testRhnLogin():
sys.exit(1)
print _("Updating package profile...")
rhnPackageInfo.updatePackageProfile()
print _("Updating hardware profile...")
rhnHardware.updateHardware()
if support is not None:
print _("Updating virtualization profile...")
support.refresh()
if __name__ == "__main__":
cli = ProfileCli()
cli.run()
|