Fix a couple of typos in messages and defaults
oginstaller/pipeline/head There was a failure building this commit Details

working-installer
Nicolas Arenas 2024-11-14 18:09:25 +01:00
parent 3f49623417
commit 82effbb989
1 changed files with 2 additions and 2 deletions

View File

@ -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")