nmtui/ipv6: add "shared" method to ipv6 options

It was previously only available for IPv4, and the option
was missing from the IPv6 methods.

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/2138
(cherry picked from commit e983e8a46f)
(cherry picked from commit 8e78a8c28f)
(cherry picked from commit 85ed0c0115)
(cherry picked from commit 33784b8dcc)
This commit is contained in:
Jan Vaclav 2025-02-13 12:07:52 +01:00
parent 80158a3764
commit 0471fb3e5e

View file

@ -29,6 +29,7 @@ static NmtNewtPopupEntry ip6methods[] = {
{N_("Automatic (DHCP-only)"), NM_SETTING_IP6_CONFIG_METHOD_DHCP},
{N_("Link-Local"), NM_SETTING_IP6_CONFIG_METHOD_LINK_LOCAL},
{N_("Manual"), NM_SETTING_IP6_CONFIG_METHOD_MANUAL},
{N_("Shared"), NM_SETTING_IP6_CONFIG_METHOD_SHARED},
{N_("Disabled"), NM_SETTING_IP6_CONFIG_METHOD_DISABLED},
{NULL, NULL}};