11 lines
115 B
Bash
Executable File
11 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
klist -s
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo -e "\e[92mReusing old credentials\e[0m"
|
|
else
|
|
kinit
|
|
fi
|
|
aklog
|
|
klist
|