Rename osmo_pcap_{client_server} executables to osmo-pcap-{client,server}

This naming is more in line with what all the other osmocom programs are
doing (e.g. osmo-pcu, osmo-bts-sysmo, osmo-bsc, ...).  We don't
generally use osmo_ anywhere else, so I suggest to change it for more
uniformity.

Change-Id: If1e3ce76f93266e0f01c801204769432b571fdb1
This commit is contained in:
Harald Welte 2017-07-21 11:45:38 +02:00
parent 2aea8704f3
commit 2fe9cb937d
5 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC=osmo-pcap-client # Introduce a short description here
NAME=osmo-pcap-client # Introduce the short server's name here
DAEMON=/usr/bin/osmo_pcap_client # Introduce the server's location here
DAEMON=/usr/bin/osmo-pcap-client # Introduce the server's location here
DAEMON_ARGS="-c /etc/osmo-pcap/osmo-pcap-client.cfg" # Arguments to run the daemon with
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

View File

@ -1 +1 @@
usr/bin/osmo_pcap_client
usr/bin/osmo-pcap-client

View File

@ -1 +1 @@
usr/bin/osmo_pcap_server
usr/bin/osmo-pcap-server

View File

@ -20,11 +20,11 @@ app_configs = {
}
apps = [
(4238, "src/osmo_pcap_server", "OsmoPCAPServer", "osmo-pcap-server"),
(4237, "src/osmo_pcap_client", "OsmoPCAPClient", "osmo-pcap-client"),
(4238, "src/osmo-pcap-server", "OsmoPCAPServer", "osmo-pcap-server"),
(4237, "src/osmo-pcap-client", "OsmoPCAPClient", "osmo-pcap-client"),
]
vty_command = ["src/osmo_pcap_server", "-c", "contrib/osmo-pcap-server.cfg"]
vty_command = ["src/osmo-pcap-server", "-c", "contrib/osmo-pcap-server.cfg"]
vty_app = apps[0]

View File

@ -1,7 +1,7 @@
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)/
AM_CFLAGS = -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(PCAP_CFLAGS) $(LIBGNUTLS_CFLAGS)
bin_PROGRAMS = osmo_pcap_client osmo_pcap_server
bin_PROGRAMS = osmo-pcap-client osmo-pcap-server
osmo_pcap_client_SOURCES = osmo_client_main.c osmo_common.c \
osmo_client_core.c osmo_client_vty.c \