We figured this out. In our /etc/issue file, we havethe following…
All activities on this system are subject to monitoring. Intentional misuse of this system may result in disciplinary action including termination and/or criminal prosecution.
In the bootstrap python file (/usr/lib/python2.6/site-packages/ambari_server/bootstrap.py), the following check is done…
if os.path.isfile("/etc/issue"): if "suse" in open("/etc/issue").read().lower(): return True return False
It only check for an instring on suse, which we have in our /etc/issue file. This seems like the check could be enhanced to include more. I will give this some thought and perhaps propose a fix.