diff --git a/python-installer/oginstaller.py b/python-installer/oginstaller.py index dc305bb..e1c03e1 100755 --- a/python-installer/oginstaller.py +++ b/python-installer/oginstaller.py @@ -167,7 +167,7 @@ def main(stdscr): config_data = {"username": user, "password": password, "container_version": tags[tag_index]} elif component == "ogGui": - ogcore_ip = get_input(stdscr, 3, 0, "IP del servidor de ogCore (127.0.0.1): " , "127.0.0.1") + ogcore_ip = get_input(stdscr, 3, 0, "URL Api OgCore (https://127.0.0.1:8443): " , "https://127.0.0.1:8443") config_data = {"ogcore_ip": ogcore_ip, "container_version": tags[tag_index]} elif component == "ogDhcp": @@ -181,7 +181,7 @@ def main(stdscr): elif component == "ogBoot": ogcore_ip = get_input(stdscr, 3, 0, "ogCore Ip Server: ", "") ogboot_server_ip = get_input(stdscr, 4, 0, "ogBoot Server IP: ", "") - ogcore_dir = get_input(stdscr, 5, 0, "ogCore Dir (/opt/opengnsys/ogcore): ", "/opt/opengnsys/ogcore") + ogcore_dir = get_input(stdscr, 5, 0, "ogCore Dir (/opt/opengnsys/ogboot): ", "/opt/opengnsys/ogboot") ogLive_default = get_input(stdscr, 6, 0, "ogLive por defecto (ogLive-noble-6.8.0-31-generic-amd64-r20241024.8100be23_20241112): ", "ogLive-noble-6.8.0-31-generic-amd64-r20241024.8100be23_20241112") ogboot_samba_user = get_input(stdscr, 7, 0, "ogBoot Samba User (opengnsys): ", "opengnsys") ogboot_samba_pass = get_password(stdscr, 8, 0, "ogBoot Samba Pass (og): ", "og")