Changes between Version 6 and Version 7 of authenkey
- Timestamp:
- 02/15/22 03:54:52 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
authenkey
v6 v7 77 77 user_password_min_length = 5 78 78 }}} 79 80 == delete session == 81 82 Session 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 85 OMD[monitor@501264b41d2d]:~/var/thruk/sessions$ grep -l -null admin1 ./* | xargs rm 86 }}}