Merge "Update nova-manage doc page"

This commit is contained in:
Zuul 2022-09-23 03:40:59 +00:00 committed by Gerrit Code Review
commit aad31e6ba4

View File

@ -258,17 +258,17 @@ stopping at 0, or use the :option:`--until-complete` option.
``YYYY-MM-DD[HH:mm:ss]``. For example::
# Purge shadow table rows older than a specific date
nova-manage db archive --before 2015-10-21
nova-manage db archive_deleted_rows --before 2015-10-21
# or
nova-manage db archive --before "Oct 21 2015"
nova-manage db archive_deleted_rows --before "Oct 21 2015"
# Times are also accepted
nova-manage db archive --before "2015-10-21 12:00"
nova-manage db archive_deleted_rows --before "2015-10-21 12:00"
Note that relative dates (such as ``yesterday``) are not supported
natively. The ``date`` command can be helpful here::
# Archive deleted rows more than one month old
nova-manage db archive --before "$(date -d 'now - 1 month')"
nova-manage db archive_deleted_rows --before "$(date -d 'now - 1 month')"
.. option:: --verbose