The basis for this question is this answer. In the sudoers man-page it is stated that:
timestamp_timeout
Number of minutes that can elapse before sudo will ask for a passwd again.
...
This can be used to allow users to create or delete their own time stamps via “sudo -v” and “sudo -k” respectively.
What is actually referred to here in the last sentence regarding the create?
This can be used to allow users to create ... their own time stamps via “sudo -v” ....
The sudo -v
command already exists and is not dependent on timestamp_timeout
as far as I can see. So where and how is that information in the man-page helping? What would be a practical usecase?