Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../.././../lib/../bin/auto-install
Real path: /usr/lib/install/auto-install
Zurück
#!/usr/bin/python3.7 -Es import solaris.no_site_packages # # Copyright (c) 2011, 2021, Oracle and/or its affiliates. # '''Main launcher for Automated Installer''' import gettext import sys from solaris_install import textdomain_add, textdomain_install from solaris_install.ai.client import auto_install _ = gettext.translation("solaris_install_autoinstall", "/usr/share/locale", fallback=True).gettext if __name__ == '__main__': textdomain_add("solaris_install_autoinstall", "/usr/share/locale") textdomain_install() try: ai = auto_install.AutoInstall(sys.argv[1:]) ai.perform_autoinstall() sys.exit(ai.exitval) except Exception as e: print(_("ERROR: an exception occurred.\n")) print("\n".join(["%s%s" % (" ", line) for line in str(e).splitlines()])) print(_("\nPlease check logs for further information.")) sys.exit(auto_install.AutoInstall.AI_EXIT_FAILURE) except KeyboardInterrupt: pass