diff mbox series

[2/2] data: Add tags to Verizon APN contexts.

Message ID 544c23a03eb34f9529b5fe1efb96fa62fbeca732.1739233526.git.gerickson@nuovations.com (mailing list archive)
State Under Review
Headers show
Series data: Update Verizon APN Contexts | expand

Commit Message

Grant Erickson Feb. 11, 2025, 12:35 a.m. UTC
Verizon has a number of different Cellular access point names (APNs)
and contexts, depending on the application, per their documentation
here:

    https://www.verizon.com/support/knowledge-base-72601/

One partition of those contexts are appropriate for LTE and/or Voice
over LTE (VoLTE) applications while another is appropriate for
Internet of Things (IoT) or machine-to-machine (M2M) applications.

This applies the 'iot', 'm2m', and 'volte' tags to the three current
Verizon APN contexts such that no tags or some combination of those
tags produce the desired set of APN contexts for the desired
application.
---
 data/provision.json | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/data/provision.json b/data/provision.json
index 9d65ac08b394..b7072af256cf 100644
--- a/data/provision.json
+++ b/data/provision.json
@@ -14285,7 +14285,8 @@ 
         "type": [
           "ims",
           "ia"
-        ]
+        ],
+        "tags": "volte"
       },
       {
         "name": "4G LTE Contract",
@@ -14293,14 +14294,16 @@ 
         "type": [
           "internet",
           "ia"
-        ]
+        ],
+        "tags": "iot,m2m,volte"
       },
       {
         "name": "4G LTE Contract",
         "apn": "vzwapp",
         "type": [
           "wap"
-        ]
+        ],
+        "tags": "volte"
       }
     ]
   },