commit: 8144269da4c02992ba1b96425eaeb7cc4db0174e Author: Nuno Silva <nuno.m.ribeiro.silva <AT> tecnico <DOT> ulisboa <DOT> pt> AuthorDate: Sun May 7 19:05:30 2023 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Thu May 18 07:21:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8144269d
media-video/motion: add reload support to init.d and service Signed-off-by: Nuno Silva <nuno.m.ribeiro.silva <AT> tecnico.ulisboa.pt> Closes: https://github.com/gentoo/gentoo/pull/30920 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> media-video/motion/files/motion.initd-r5 | 12 ++++++++++++ media-video/motion/files/motion.service-r4 | 1 + 2 files changed, 13 insertions(+) diff --git a/media-video/motion/files/motion.initd-r5 b/media-video/motion/files/motion.initd-r5 index 315bda6c2e7f..4d7b43af585b 100644 --- a/media-video/motion/files/motion.initd-r5 +++ b/media-video/motion/files/motion.initd-r5 @@ -13,6 +13,8 @@ command=/usr/bin/motion command_user="${MOTION_USER}:${MOTION_GROUP}" +extra_started_commands="reload" +description_reload="Reread the config file" start_pre() { if [ "${MOTION_DIR}" ] ; then @@ -35,3 +37,13 @@ depend() { after bootmisc use mysql postgresq } + +reload() { + ebegin "Reloading ${RC_SVCNAME}" + if [ "${MOTION_PIDFILE}" ] ; then + start-stop-daemon --signal SIGHUP --pidfile "${MOTION_PIDFILE}" + else + supervise-daemon ${RC_SVCNAME} --signal SIGHUP + fi + eend $? +} diff --git a/media-video/motion/files/motion.service-r4 b/media-video/motion/files/motion.service-r4 index 1564fb2699c4..66143f0e204b 100644 --- a/media-video/motion/files/motion.service-r4 +++ b/media-video/motion/files/motion.service-r4 @@ -13,6 +13,7 @@ Documentation=man:motion(1) Type=simple ExecStart=/usr/bin/motion -n -c /etc/motion/motion.conf StandardError=null +ExecReload=/bin/kill -HUP $MAINPID User=motion Group=motion
