From: Clinton Ebadi Date: Mon, 4 Jun 2012 04:18:45 +0000 (-0400) Subject: Initial kerberos config X-Git-Tag: debian/0^0 X-Git-Url: http://git.hcoop.net/hcoop/zz_old/debian/hcoop-krb5-config.git/commitdiff_plain/e2e325921543689f2305b56280235f26e451f991 Initial kerberos config * Unfortunately, we have to set just enough that debconf isn't quite good enough --- e2e325921543689f2305b56280235f26e451f991 diff --git a/debian/README b/debian/README new file mode 100644 index 0000000..6c843e7 --- /dev/null +++ b/debian/README @@ -0,0 +1,6 @@ +The Debian Package hcoop-krb5-config +---------------------------- + +Comments regarding the Package + + -- Clinton Ebadi Mon, 04 Jun 2012 00:01:58 -0400 diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..96dba3a --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +hcoop-krb5-config for Debian +---------------------------- + + + + -- Clinton Ebadi Mon, 04 Jun 2012 00:01:58 -0400 diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000..6cb9363 --- /dev/null +++ b/debian/README.source @@ -0,0 +1,9 @@ +hcoop-krb5-config for Debian +---------------------------- + + + + + + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..94a8474 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +hcoop-krb5-config (0) unstable; urgency=low + + * Initial Release. + + -- Clinton Ebadi Mon, 04 Jun 2012 00:01:58 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..71158fa --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: hcoop-krb5-config +Section: hcoop-config/net +Priority: extra +Maintainer: Clinton Ebadi +Build-Depends: debhelper (>= 8.0.0) +Standards-Version: 3.9.2 +Homepage: +#Vcs-Git: git://git.debian.org/collab-maint/hcoop-krb5-config.git +#Vcs-Browser: http://git.debian.org/?p=collab-maint/hcoop-krb5-config.git;a=summary + +Package: hcoop-krb5-config +Architecture: all +Depends: cdbs, ${misc:Depends} +Provides: ${diverted-files} +Conflicts: ${diverted-files} +Description: HCoop Kerberos configuration for services machines + Static kerberos configuration for HCoop machines that provide network + services to members. In theory DNS should work, but it doesn't quite, + so here we are. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c531f8f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: hcoop-krb5-config +Source: + +Files: * +Copyright: + +License: GPL-3.0+ + +Files: debian/* +Copyright: 2012 Clinton Ebadi +License: GPL-3.0+ + +License: GPL-3.0+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. +# Please avoid to pick license terms that are more restrictive than the +# packaged work, as it may make Debian's contributions unacceptable upstream. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..538efad --- /dev/null +++ b/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_DIVERT_EXTENSION =.hcoop +DEB_DIVERT_FILES_hcoop-krb5-config += \ + /etc/krb5.conf.hcoop + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/config-package.mk \ No newline at end of file diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/files/krb5.conf.hcoop b/files/krb5.conf.hcoop new file mode 100644 index 0000000..7546c01 --- /dev/null +++ b/files/krb5.conf.hcoop @@ -0,0 +1,14 @@ +[libdefaults] + default_realm = HCOOP.NET + kdc_timesync = 1 + forwardable = true + proxiable = true + +[realms] + HCOOP.NET = { + admin_server = kerberos-adm.hcoop.net + } + +[domain_realm] + .hcoop.net = HCOOP.NET + hcoop.net = HCOOP.NET \ No newline at end of file