mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hlr.git
synced 2025-11-02 05:03:31 +00:00
Display the IMEI in "subscriber ... show", allow showing and modifying subscribers by their IMEI with: "subscriber imei ...". For debug purposes (and to have proper VTY tests), make it possible to change the IMEI with "subscriber ... update imei". IMEIs are saved in the database without the 15th checksum number. When the checksum gets passed, verify it and cut it off. Related: OS#2541 Depends: I02b54cf01a674a1911c5c897fbec02240f88b521 (libosmocore) Change-Id: I1af7b573ca2a1cb22497052665012d9c1acf3b30
7 lines
323 B
SQL
7 lines
323 B
SQL
-- Subscriber with invalid IMEI length
|
|
INSERT INTO subscriber (id, imsi, imei) VALUES(99, '000000000000099', '12345');
|
|
|
|
-- Dummy entry with ID=100 gives all subscribers created in the VTY test an
|
|
-- ID > 100, so we can pre-fill the database with IDs < 100.
|
|
INSERT INTO subscriber (id, imsi) VALUES(100, '000000000000100');
|