From 11d83bffe6a5b29c655280950ebaa34767f3102a Mon Sep 17 00:00:00 2001 From: hansmi Date: Sun, 20 Aug 2023 21:25:33 +0200 Subject: [PATCH] Add "apn", remove "running" property for ppp-client interfaces (#202) Commit 2164261 added support for `interface ppp-client`. It missed the `apn` property and added the runtime-only `running` property. Signed-off-by: Michael Hanselmann --- plugins/module_utils/_api_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/module_utils/_api_data.py b/plugins/module_utils/_api_data.py index ee60e95..7ace4fc 100644 --- a/plugins/module_utils/_api_data.py +++ b/plugins/module_utils/_api_data.py @@ -304,6 +304,7 @@ PATHS = { fields={ 'add-default-route': KeyInfo(default=True), 'allow': KeyInfo(default='pap,chap,mschap1,mschap2'), + 'apn': KeyInfo(default='internet'), 'comment': KeyInfo(can_disable=True, remove_value=''), 'data-channel': KeyInfo(default=0), 'default-route-distance': KeyInfo(default=1), @@ -323,7 +324,6 @@ PATHS = { 'pin': KeyInfo(default=''), 'port': KeyInfo(), 'profile': KeyInfo(default='default'), - 'running': KeyInfo(default=False), 'use-peer-dns': KeyInfo(default=True), 'user': KeyInfo(default=''), },