Skip to content

Commit

Permalink
Add "apn", remove "running" property for ppp-client interfaces
Browse files Browse the repository at this point in the history
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 <public@hansmi.ch>
  • Loading branch information
hansmi committed Aug 20, 2023
1 parent b0a4743 commit 1554146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ def join_path(path):
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),
Expand All @@ -323,7 +324,6 @@ def join_path(path):
'pin': KeyInfo(default=''),
'port': KeyInfo(),
'profile': KeyInfo(default='default'),
'running': KeyInfo(default=False),
'use-peer-dns': KeyInfo(default=True),
'user': KeyInfo(default=''),
},
Expand Down

0 comments on commit 1554146

Please sign in to comment.