From 9a16571f0dfd4de3606c2150bca9959697b79115 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 11 Sep 2018 15:26:52 -0700 Subject: [PATCH] Add afs client docs for non Debuntu Add info on how to kinit and aklog if not using Debuntu deb.conf to set the correct realm and cell settings. Change-Id: I80a698649f03863b73399873cf190fda4fa41776 --- doc/source/afs.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/source/afs.rst b/doc/source/afs.rst index d768669c0a..f5149b6f03 100644 --- a/doc/source/afs.rst +++ b/doc/source/afs.rst @@ -107,6 +107,21 @@ authentication token for use with AFS with:: kinit aklog +If not running on Debian or Ubuntu you can install openafs client +packages as well as Kerberos5 packages on your distro of choice. + +Then to kinit, use your fully qualified user id:: + + kinit $USERNAME@OPENSTACK.ORG + +Or for admin access:: + + kinit $USERNAME/admin@OPENSTACK.ORG + +Then aklog, specifying the openstack.org cell:: + + aklog -cell openstack.org + Administration --------------