daniel has uploaded this change for review. ( https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28656 )
Change subject: diameter: Change default bind IP to 127.0.0.8
......................................................................
diameter: Change default bind IP to 127.0.0.8
The IP 127.0.0.4 is already used by the smf. Since the mme by default
tries to connect to the hss at 127.0.0.8 let's change the default here
to something that works ootb.
Change-Id: Ibe36e86e6473caab753308837b2ced0f1b53e1f2
---
M src/osmo_dia2gsup.erl
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo_dia2gsup refs/changes/56/28656/1
diff --git a/src/osmo_dia2gsup.erl b/src/osmo_dia2gsup.erl
index be8e87c..a4edd71 100644
--- a/src/osmo_dia2gsup.erl
+++ b/src/osmo_dia2gsup.erl
@@ -69,7 +69,7 @@
% DIAMETER side
SvcName = ?MODULE,
diameter:start_service(SvcName, ?SERVICE(SvcName)),
- Ip = application:get_env(osmo_dia2gsup, diameter_ip, "127.0.0.4"),
+ Ip = application:get_env(osmo_dia2gsup, diameter_ip, "127.0.0.8"),
Port = application:get_env(osmo_dia2gsup, diameter_port, 3868),
Proto = application:get_env(osmo_dia2gsup, diameter_proto, sctp),
listen({address, Proto, element(2,inet:parse_address(Ip)), Port}),
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28656
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: Ibe36e86e6473caab753308837b2ced0f1b53e1f2
Gerrit-Change-Number: 28656
Gerrit-PatchSet: 1
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-MessageType: newchange
Attention is currently required from: osmith.
lynxis lazus has posted comments on this change. ( https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653 )
Change subject: debian: add generate_build_dep.sh to vendor erlang dependencies
......................................................................
Patch Set 3:
(3 comments)
Commit Message:
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653/comment/bec25bfa_…
PS1, Line 8:
> the plan is to run this while generating source packages in the jenkins jobs, I'd mention it here.
Done
File contrib/generate_build_dep.sh:
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653/comment/99033507_…
PS1, Line 1: #!/bin/sh
> #!/bin/sh -e […]
Ack
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653/comment/6ef4221c_…
PS1, Line 10:
> I'd add "set -x" here so we see the commands, in case one fails
Done
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: I22041887fd1b72ea328605d18801d412b86bfc9c
Gerrit-Change-Number: 28653
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 19 Jul 2022 13:53:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: lynxis lazus.
Hello osmith, Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653
to look at the new patch set (#3).
Change subject: debian: add generate_build_dep.sh to vendor erlang dependencies
......................................................................
debian: add generate_build_dep.sh to vendor erlang dependencies
To build on OBS the source package must include all dependencies.
Downloading dependencies isn't allowed. generate_build_dep.sh will
download all dependencies.
The jenkins job to update OBS should do this before calling
`dpkg-buildpackage -S` to build a source package.
Related: SYS#6006
Change-Id: I22041887fd1b72ea328605d18801d412b86bfc9c
---
A contrib/generate_build_dep.sh
M debian/rules
2 files changed, 19 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo_dia2gsup refs/changes/53/28653/3
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: I22041887fd1b72ea328605d18801d412b86bfc9c
Gerrit-Change-Number: 28653
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-MessageType: newpatchset
Attention is currently required from: osmith, pespin, lynxis lazus.
Hello osmith, Jenkins Builder, fixeria, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28650
to look at the new patch set (#2).
Change subject: add rebar.lock to define known working dependencies
......................................................................
add rebar.lock to define known working dependencies
The rebar.lock contains the last known working state
of all dependencies with exact version numbers.
rebar.config only holds the minimal dependencies (package x version >=2.0.0)
Related: SYS#6006
Change-Id: I40660b23cee04ef2b4afbca34522a42a4b057e2e
---
M .gitignore
A rebar.lock
2 files changed, 35 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo_dia2gsup refs/changes/50/28650/2
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28650
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: I40660b23cee04ef2b4afbca34522a42a4b057e2e
Gerrit-Change-Number: 28650
Gerrit-PatchSet: 2
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-MessageType: newpatchset
Attention is currently required from: osmith.
Hello osmith, Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28652
to look at the new patch set (#2).
Change subject: debian: rework packaging
......................................................................
debian: rework packaging
- use the rebar3' debian/rules as template
- use override targets instead of the exact targets
- only install the escriptize osmo_dia2gsup file
Related: SYS#6006
Change-Id: I40add168875de87ef0cc62deeb5377d2ce080e45
---
M contrib/systemd/osmo_dia2gsup.service
M debian/osmo-diameter2gsup.install
M debian/rules
3 files changed, 16 insertions(+), 16 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo_dia2gsup refs/changes/52/28652/2
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28652
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: I40add168875de87ef0cc62deeb5377d2ce080e45
Gerrit-Change-Number: 28652
Gerrit-PatchSet: 2
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newpatchset
Attention is currently required from: lynxis lazus.
Hello osmith, Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653
to look at the new patch set (#2).
Change subject: debian: add generate_build_dep.sh to vendor erlang dependencies
......................................................................
debian: add generate_build_dep.sh to vendor erlang dependencies
To build on OBS the source package must include all dependencies.
Downloading dependencies isn't allowed. generate_build_dep.sh will
download all dependencies.
The jenkins job to update OBS should do this before calling
`dpkg-buildpackage -S` to build a source package.
Related: SYS#6006
Change-Id: I22041887fd1b72ea328605d18801d412b86bfc9c
---
A contrib/generate_build_dep.sh
M debian/rules
2 files changed, 18 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/erlang/osmo_dia2gsup refs/changes/53/28653/2
--
To view, visit https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/28653
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: erlang/osmo_dia2gsup
Gerrit-Branch: master
Gerrit-Change-Id: I22041887fd1b72ea328605d18801d412b86bfc9c
Gerrit-Change-Number: 28653
Gerrit-PatchSet: 2
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-MessageType: newpatchset