aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-23 17:01:45 -0400
committerB Stack <bgstack15@gmail.com>2020-03-23 17:01:45 -0400
commita3e27219edd1c77fe9831d4eac1d7310f8afdd06 (patch)
treebf30a9449a3ee3afbc6fc46c860591a64907ac8d /debian/rules
parentadd debian/ (diff)
downloadfreeipa-helper-a3e27219edd1c77fe9831d4eac1d7310f8afdd06.tar.gz
freeipa-helper-a3e27219edd1c77fe9831d4eac1d7310f8afdd06.tar.bz2
freeipa-helper-a3e27219edd1c77fe9831d4eac1d7310f8afdd06.zip
fix sssd.conf and improve packaging
fix #1 post-install needs to chmod 0600 sssd.conf add sssd.conf.in template add make-dsc-for-obs script bump version to 0.0.2
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules6
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index 8e199c0..9f2ca42 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,11 +4,15 @@
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
-APPNAME=freeipa-helper
+export APPNAME=freeipa-helper
%:
dh $@ --sourcedirectory=src
+override_dh_auto_build:
+ dh_auto_build
+ sh debian/make-dsc-for-obs.sh
+
override_dh_auto_install:
dh_auto_install -- prefix=/usr DEFAULTDIR='$$(DESTDIR)/etc/default'
bgstack15