Changes of Revision 155

open5gs_2.5.5.33.f85ff.202211270002.dsc -> open5gs_2.5.5.35.0205.202211280943.dsc Changed
x
 
1
@@ -2,7 +2,7 @@
2
 Source: open5gs
3
 Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
 Architecture: any
5
-Version: 2.5.5.33.f85ff.202211270002
6
+Version: 2.5.5.35.0205.202211280943
7
 Maintainer: Harald Welte <laforge@gnumonks.org>
8
 Uploaders: Sukchan Lee <acetcom@gmail.com>
9
 Homepage: https://open5gs.org
10
@@ -31,8 +31,8 @@
11
  open5gs-udr deb net optional arch=any
12
  open5gs-upf deb net optional arch=any
13
 Checksums-Sha1:
14
- 56a4ec38804975d99a77a0bb689cd6c590c55ae4 13147100 open5gs_2.5.5.33.f85ff.202211270002.tar.xz
15
+ 719ba71266ede2612a311036f1fae776ebc09148 13147348 open5gs_2.5.5.35.0205.202211280943.tar.xz
16
 Checksums-Sha256:
17
- 8aa874b1255e4fac09b8e9ace04458d6e6443e8cb1531b0f1abd1899187ab4be 13147100 open5gs_2.5.5.33.f85ff.202211270002.tar.xz
18
+ 7f948b876cb9a515daa3e477d7ea01402186eb63f271a7c7401c0e18f70e0abe 13147348 open5gs_2.5.5.35.0205.202211280943.tar.xz
19
 Files:
20
- c9ce40fd16a2e972d51c3aaac5e7fcd7 13147100 open5gs_2.5.5.33.f85ff.202211270002.tar.xz
21
+ 52e87773e40ac327a243d70cd40a39a5 13147348 open5gs_2.5.5.35.0205.202211280943.tar.xz
22
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/.tarball-version -> open5gs_2.5.5.35.0205.202211280943.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-2.5.5.33-f85ff.202211270002
3
+2.5.5.35-0205.202211280943
4
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/debian/changelog -> open5gs_2.5.5.35.0205.202211280943.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-open5gs (2.5.5.33.f85ff.202211270002) unstable; urgency=medium
3
+open5gs (2.5.5.35.0205.202211280943) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom nightly feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Sun, 27 Nov 2022 00:04:32 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Mon, 28 Nov 2022 09:47:30 +0000
9
 
10
 open5gs (2.5.6) unstable; urgency=medium
11
 
12
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/docs/assets/webui/install -> open5gs_2.5.5.35.0205.202211280943.tar.xz/docs/assets/webui/install Changed
39
 
1
@@ -96,6 +96,11 @@
2
     exit 1
3
 fi
4
 
5
+if  ! -x /usr/bin/npm ; then
6
+    print_status "First you need to install NPM packages."
7
+    exit 1
8
+fi
9
+
10
 PRE_INSTALL_PKGS=""
11
 
12
 # Check that HTTPS transport is available to APT
13
@@ -270,14 +275,22 @@
14
 EOF"
15
 
16
 exec_cmd_nobail "systemctl daemon-reload"
17
-exec_cmd "systemctl enable open5gs-webui"
18
-exec_cmd "deb-systemd-invoke start open5gs-webui"
19
+exec_cmd_nobail "systemctl enable open5gs-webui"
20
+exec_cmd_nobail "deb-systemd-invoke start open5gs-webui"
21
 }
22
 
23
 postinstall() {
24
 
25
 print_status "Default Administrator Account Username:admin, Password:1423..."
26
-exec_cmd "mongosh open5gs ./${PACKAGE}-${VERSION}/docs/assets/webui/mongo-init.js"
27
+if  -x /usr/bin/mongo ;
28
+then
29
+    exec_cmd "mongo open5gs ./${PACKAGE}-${VERSION}/docs/assets/webui/mongo-init.js"
30
+elif  -x /usr/bin/mongosh ;
31
+then
32
+    exec_cmd "mongosh open5gs ./${PACKAGE}-${VERSION}/docs/assets/webui/mongo-init.js"
33
+else
34
+    echo "Failed to execute mongo-init.js"
35
+fi
36
 
37
 exec_cmd "rm -rf ./${PACKAGE}-${VERSION}"
38
 }
39
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/src/amf/gmm-handler.c -> open5gs_2.5.5.35.0205.202211280943.tar.xz/src/amf/gmm-handler.c Changed
25
 
1
@@ -664,9 +664,22 @@
2
             amf_ue->nas.ue.tsc, amf_ue->nas.amf.tsc,
3
             amf_ue->nas.ue.ksi, amf_ue->nas.amf.ksi);
4
 
5
-    if (deregistration_request->de_registration_type.switch_off)
6
+    if (deregistration_request->de_registration_type.switch_off) {
7
         ogs_debug("    Switch-Off");
8
 
9
+        /*
10
+         * Issue #1917
11
+         *
12
+         * When the UE sends a De-registration Request with Switch-Off,
13
+         * AMF should remove the the stored UE Radio Capability.
14
+         *
15
+         * Otherwise, the Radio Capability will not match
16
+         * because the gNB will not query the Radio Capability
17
+         * when the UE changes USIM.
18
+         */
19
+        OGS_ASN_CLEAR_DATA(&amf_ue->ueRadioCapability);
20
+    }
21
+
22
     ogs_info("%s    SUCI", amf_ue->suci);
23
 
24
     amf_sbi_send_release_all_sessions(
25
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/src/mme/emm-handler.c -> open5gs_2.5.5.35.0205.202211280943.tar.xz/src/mme/emm-handler.c Changed
25
 
1
@@ -423,9 +423,22 @@
2
     default: /* all other values */
3
         break;
4
     }
5
-    if (detach_request->detach_type.switch_off)
6
+    if (detach_request->detach_type.switch_off) {
7
         ogs_debug("    Switch-Off");
8
 
9
+        /*
10
+         * Issue #1917
11
+         *
12
+         * When the UE sends a Detach Request with Switch-Off,
13
+         * MME should remove the the stored UE Radio Capability.
14
+         *
15
+         * Otherwise, the Radio Capability will not match
16
+         * because the eNB will not query the Radio Capability
17
+         * when the UE changes USIM.
18
+         */
19
+        OGS_ASN_CLEAR_DATA(&mme_ue->ueRadioCapability);
20
+    }
21
+
22
     return OGS_OK;
23
 }
24
 
25