diff options
author | B Stack <bgstack15@gmail.com> | 2020-03-23 17:01:45 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-03-23 17:01:45 -0400 |
commit | a3e27219edd1c77fe9831d4eac1d7310f8afdd06 (patch) | |
tree | bf30a9449a3ee3afbc6fc46c860591a64907ac8d /src/Makefile | |
parent | add debian/ (diff) | |
download | freeipa-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 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index c48eefa..a328501 100644 --- a/src/Makefile +++ b/src/Makefile @@ -13,7 +13,7 @@ # Dependencies: APPNAME = freeipa-helper -APPVERSION = 0.0.1 +APPVERSION = 0.0.2 SRCDIR = $(CURDIR) prefix = /usr SYSCONFDIR = $(DESTDIR)/etc @@ -56,8 +56,9 @@ deplist_opts: install: @${echobin} Installing files to ${DESTDIR} - ${installbin} -d ${SBINDIR} ${DOCDIR} ${BINDIR} ${BINDIR1} + ${installbin} -d ${SBINDIR} ${DOCDIR} ${BINDIR} ${BINDIR1} ${APPDIR} ${installbin} -m 0755 -t ${SBINDIR} ${SRCDIR}/usr/sbin/* + ${installbin} -m 0644 -t ${APPDIR} ${SRCDIR}/usr/share/${APPNAME}/* test -L ${BINDIR1}/systemctl || ${lnbin} -s ${SBINDIR}/systemctl ${BINDIR1}/systemctl test -L ${BINDIR}/hostnamectl || ${lnbin} -s ${SBINDIR}/systemctl ${BINDIR}/hostnamectl test -L ${BINDIR}/systemd-detect-virt || ${lnbin} -s ${SBINDIR}/systemctl ${BINDIR}/systemd-detect-virt |