aboutsummaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-11 17:53:18 -0400
committerB Stack <bgstack15@gmail.com>2020-03-11 17:53:18 -0400
commit61bb7a27543b9caa57e9cf39d9d10131d5af674d (patch)
tree56623c8a211677ae53cdfc2b2d365af5f20714aa /debian/control
parentinitial commit (diff)
downloadfreeipa-helper-61bb7a27543b9caa57e9cf39d9d10131d5af674d.tar.gz
freeipa-helper-61bb7a27543b9caa57e9cf39d9d10131d5af674d.tar.bz2
freeipa-helper-61bb7a27543b9caa57e9cf39d9d10131d5af674d.zip
add debian/
added the deplist feature to Makefile to support debuild
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..febc104
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: freeipa-helper
+Section: net
+Priority: optional
+Maintainer: Ben Stack <bgstack15@gmail.com>
+Build-Depends: debhelper (>=12~)
+Standards-Version: 4.1.4
+Homepage: https://gitlab.com/bgstack15/freeipa-helper
+
+Package: freeipa-helper
+Architecture: all
+Multi-Arch: foreign
+Suggests: oddjob-mkhomedir (=0.0.1-1)
+Recommends: freeipa-client
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: makes running ipa-client-install easier
+ Use this set of scripts as part of your ipa client
+ installation. Some pretend to be systemctl and
+ related scripts, and one is a post-install script
+ for final configuration.
bgstack15