Install systemd services with autotools

Change-Id: I015ac3fbe5adc551b76bac5c15ad93d30d0d2b6e
This commit is contained in:
Pau Espin 2018-09-10 13:00:44 +02:00
parent 526b4a5f35
commit d58ddb2c4e
7 changed files with 32 additions and 2 deletions

View File

@ -13,11 +13,15 @@ SUBDIRS = \
include \ include \
src \ src \
tests \ tests \
contrib \
$(NULL) $(NULL)
BUILT_SOURCES = $(top_srcdir)/.version BUILT_SOURCES = $(top_srcdir)/.version
EXTRA_DIST = git-version-gen osmoappdesc.py .version EXTRA_DIST = git-version-gen osmoappdesc.py .version
DISTCHECK_CONFIGURE_FLAGS = \
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
@RELMAKE@ @RELMAKE@
$(top_srcdir)/.version: $(top_srcdir)/.version:

View File

@ -157,6 +157,22 @@ AC_MSG_CHECKING([whether to enable VTY/CTRL tests])
AC_MSG_RESULT([$enable_ext_tests]) AC_MSG_RESULT([$enable_ext_tests])
AM_CONDITIONAL(ENABLE_EXT_TESTS, test "x$enable_ext_tests" = "xyes") AM_CONDITIONAL(ENABLE_EXT_TESTS, test "x$enable_ext_tests" = "xyes")
# https://www.freedesktop.org/software/systemd/man/daemon.html
AC_ARG_WITH([systemdsystemunitdir],
[AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files])],,
[with_systemdsystemunitdir=auto])
AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitdir" = "xauto"], [
def_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
AS_IF([test "x$def_systemdsystemunitdir" = "x"],
[AS_IF([test "x$with_systemdsystemunitdir" = "xyes"],
[AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])])
with_systemdsystemunitdir=no],
[with_systemdsystemunitdir="$def_systemdsystemunitdir"])])
AS_IF([test "x$with_systemdsystemunitdir" != "xno"],
[AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])])
AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemdsystemunitdir" != "xno"])
AC_MSG_RESULT([CFLAGS="$CFLAGS"]) AC_MSG_RESULT([CFLAGS="$CFLAGS"])
AC_MSG_RESULT([CPPFLAGS="$CPPFLAGS"]) AC_MSG_RESULT([CPPFLAGS="$CPPFLAGS"])
@ -183,4 +199,6 @@ AC_OUTPUT(
tests/handover/Makefile tests/handover/Makefile
doc/Makefile doc/Makefile
doc/examples/Makefile doc/examples/Makefile
contrib/Makefile
contrib/systemd/Makefile
Makefile) Makefile)

1
contrib/Makefile.am Normal file
View File

@ -0,0 +1 @@
SUBDIRS = systemd

View File

@ -0,0 +1,5 @@
if HAVE_SYSTEMD
EXTRA_DIST = osmo-bsc.service
systemdsystemunit_DATA = \
osmo-bsc.service
endif

View File

@ -1,3 +1,4 @@
lib/systemd/system/osmo-bsc.service
usr/bin/osmo-bsc usr/bin/osmo-bsc
usr/share/doc/osmo-bsc/examples/osmo-bsc/osmo-bsc_custom-sccp.cfg usr/share/doc/osmo-bsc/examples usr/share/doc/osmo-bsc/examples/osmo-bsc/osmo-bsc_custom-sccp.cfg usr/share/doc/osmo-bsc/examples
usr/share/doc/osmo-bsc/examples/osmo-bsc/osmo-bsc.cfg usr/share/doc/osmo-bsc/examples usr/share/doc/osmo-bsc/examples/osmo-bsc/osmo-bsc.cfg usr/share/doc/osmo-bsc/examples

View File

@ -1 +0,0 @@
../contrib/systemd/osmo-bsc.service

4
debian/rules vendored
View File

@ -42,8 +42,10 @@
# main packaging script based on dh7 syntax # main packaging script based on dh7 syntax
%: %:
dh $@ --with autoreconf dh $@ --with autoreconf
# debmake generated override targets
CONFIGURE_FLAGS += --with-systemdsystemunitdir=/lib/systemd/system
override_dh_auto_configure: override_dh_auto_configure:
dh_auto_configure -- $(CONFIGURE_FLAGS) dh_auto_configure -- $(CONFIGURE_FLAGS)
# #