From 35745456a22279be3b532147b5ee982f598c8840 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Fri, 26 Apr 2019 19:57:06 -0400 Subject: [PATCH] Ship openrc file in /etc/init.d --- CHANGES | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 5e5ed3d..ae691e0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,7 @@ 1.2.0 UNRELEASED - Add new expand option to setup.py so various file system locations can be specified at build/install time rather than being hard coded + - Install openrc init file for Gentoo and other openrc users 1.1.0 2019-04-12 - Add SubDomains option to enable signing for sub-domains (LP: #1811535) diff --git a/setup.py b/setup.py index bd9b59f..f65a712 100644 --- a/setup.py +++ b/setup.py @@ -112,7 +112,8 @@ setup( ['man/dkimpy-milter.8']), ('etc', ['etc/dkimpy-milter.conf']), (os.path.join('lib', 'systemd', 'system'), ['system/dkimpy-milter.service']),(os.path.join('etc', 'init.d'), - ['system/dkimpy-milter'])], + ['system/dkimpy-milter']), (os.path.join('etc', 'init.d'), + ['system/dkimpy-milter.openrc'])], zip_safe = False, cmdclass={ 'expand': FileMacroExpand,