From: root Date: Thu, 19 Nov 2015 11:31:03 +0000 (+0100) Subject: saving uncommitted changes in /etc prior to emerge run X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=6f30281d20b4ba13f647cd11dbae32f89d6fa609;p=config%2Fuhu1%2Fetc.git saving uncommitted changes in /etc prior to emerge run --- diff --git a/.etckeeper b/.etckeeper index d3e9eba..a8177a3 100755 --- a/.etckeeper +++ b/.etckeeper @@ -199,6 +199,9 @@ maybe chmod 0644 'conf.d/lvm' maybe chmod 0644 'conf.d/mdadm' maybe chmod 0644 'conf.d/mdraid' maybe chmod 0644 'conf.d/memcached' +maybe chmod 0644 'conf.d/mit-krb5kadmind' +maybe chmod 0644 'conf.d/mit-krb5kdc' +maybe chmod 0644 'conf.d/mit-krb5kpropd' maybe chmod 0644 'conf.d/modules' maybe chmod 0644 'conf.d/mysql' maybe chmod 0644 'conf.d/nagios' diff --git a/conf.d/mit-krb5kadmind b/conf.d/mit-krb5kadmind new file mode 100644 index 0000000..f6029b6 --- /dev/null +++ b/conf.d/mit-krb5kadmind @@ -0,0 +1,2 @@ +# Define startup options for Kerberos administration server +KADMIND_OPTS="" diff --git a/conf.d/mit-krb5kdc b/conf.d/mit-krb5kdc new file mode 100644 index 0000000..887d3d8 --- /dev/null +++ b/conf.d/mit-krb5kdc @@ -0,0 +1,2 @@ +# Define startup options for Kerberos KDC +KDC_OPTS="" diff --git a/conf.d/mit-krb5kpropd b/conf.d/mit-krb5kpropd new file mode 100644 index 0000000..d75d41a --- /dev/null +++ b/conf.d/mit-krb5kpropd @@ -0,0 +1,2 @@ +# Define startup options for Kerberos incremental propagation server +KPROPD_OPTS="" diff --git a/init.d/mit-krb5kadmind b/init.d/mit-krb5kadmind index 7b28fb2..5278c7a 100755 --- a/init.d/mit-krb5kadmind +++ b/init.d/mit-krb5kadmind @@ -14,7 +14,7 @@ depend() { start() { ebegin "Starting $daemon" - start-stop-daemon --start --quiet --exec ${exec} 1>&2 + start-stop-daemon --start --quiet --exec ${exec} -- ${KADMIND_OPTS} 1>&2 eend $? "Error starting $daemon" } diff --git a/init.d/mit-krb5kdc b/init.d/mit-krb5kdc index 94f1f79..eab0cd1 100755 --- a/init.d/mit-krb5kdc +++ b/init.d/mit-krb5kdc @@ -13,7 +13,7 @@ depend() { start() { ebegin "Starting $daemon" - start-stop-daemon --start --quiet --exec ${exec} 1>&2 + start-stop-daemon --start --quiet --exec ${exec} -- ${KDC_OPTS} 1>&2 eend $? "Error starting $daemon" } diff --git a/init.d/mit-krb5kpropd b/init.d/mit-krb5kpropd index d800d66..5459466 100755 --- a/init.d/mit-krb5kpropd +++ b/init.d/mit-krb5kpropd @@ -13,7 +13,7 @@ depend() { start() { ebegin "Starting $daemon" - start-stop-daemon --start --quiet --exec ${exec} -- -S 1>&2 + start-stop-daemon --start --quiet --exec ${exec} -- ${KPROPD_OPTS} 1>&2 eend $? "Error starting $daemon" }