Changes between Version 6 and Version 7 of authenkey


Ignore:
Timestamp:
02/15/22 03:54:52 (3 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • authenkey

    v6 v7  
    7777user_password_min_length = 5
    7878}}}
     79
     80== delete session ==
     81
     82Session was locate at ~/var/thruk/session. We want to remove admin1 from the list of session files so we need to find the user '''admin1''' from context in every session file then delete all that files.
     83{{{
     84#!sh
     85OMD[monitor@501264b41d2d]:~/var/thruk/sessions$ grep -l -null admin1 ./* | xargs rm
     86}}}