fix install location and setuid setting in deb pkgs

This commit is contained in:
Antonio SJ Musumeci 2020-05-13 19:37:17 -04:00
parent e0bb4e407a
commit c6bce81747
2 changed files with 12 additions and 2 deletions

9
debian/mergerfs.postinst vendored Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
set -e
case "${1}" in
configure)
chmod 4755 /bin/mergerfs-fusermount
;;
esac

5
debian/rules vendored
View File

@ -2,10 +2,11 @@
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DH_VERBOSE=1
%:
dh $@ --parallel
override_dh_auto_install:
$(MAKE) DESTDIR=$(CURDIR)/debian/mergerfs PREFIX=/usr install
$(MAKE) DESTDIR=$(CURDIR)/debian/mergerfs PREFIX=/usr install-base
$(MAKE) DESTDIR=$(CURDIR)/debian/mergerfs PREFIX= install-mount-tools