summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorAl Zohali <zohl@fmap.me>2016-03-07 23:04:34 +0300
committerAl Zohali <zohl@fmap.me>2016-03-07 23:24:35 +0300
commit896a70aa52ad1cd912d07859dfb69db2bcc24181 (patch)
tree7a9e6eab948bc39339c0240376fcd8beccf7b1b2 /nixos
parenta227bd4e3b9c98f61fa98f305ea191cb20dbbabd (diff)
downloadnixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.tar
nixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.tar.gz
nixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.tar.bz2
nixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.tar.lz
nixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.tar.xz
nixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.tar.zst
nixlib-896a70aa52ad1cd912d07859dfb69db2bcc24181.zip
KDC description fix
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/krb5.nix2
-rw-r--r--nixos/modules/services/system/kerberos.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/config/krb5.nix b/nixos/modules/config/krb5.nix
index d2198e4ac1ae..b845ef69a753 100644
--- a/nixos/modules/config/krb5.nix
+++ b/nixos/modules/config/krb5.nix
@@ -32,7 +32,7 @@ in
 
       kdc = mkOption {
         default = "kerberos.mit.edu";
-        description = "Kerberos Domain Controller.";
+        description = "Key Distribution Center";
       };
 
       kerberosAdminServer = mkOption {
diff --git a/nixos/modules/services/system/kerberos.nix b/nixos/modules/services/system/kerberos.nix
index e0c3f95c3ccc..347302c6090d 100644
--- a/nixos/modules/services/system/kerberos.nix
+++ b/nixos/modules/services/system/kerberos.nix
@@ -46,7 +46,7 @@ in
       };
 
     systemd.services.kdc = {
-      description = "Kerberos Domain Controller daemon";
+      description = "Key Distribution Center daemon";
       wantedBy = [ "multi-user.target" ];
       preStart = ''
         mkdir -m 0755 -p ${stateDir}
@@ -55,7 +55,7 @@ in
     };
 
     systemd.services.kpasswdd = {
-      description = "Kerberos Domain Controller daemon";
+      description = "Kerberos Password Changing daemon";
       wantedBy = [ "multi-user.target" ];
       script = "${heimdal}/sbin/kpasswdd";
     };