diff options
| author | Endi S. Dewata <edewata@redhat.com> | 2016-04-23 00:50:08 +0200 |
|---|---|---|
| committer | Endi S. Dewata <edewata@redhat.com> | 2016-05-03 01:56:54 +0200 |
| commit | 0b779ffe4d29474b4f75370e4da9d7723d9bfec5 (patch) | |
| tree | b56ed632a5b8063eccbfc4df889433b7033d6bdb /base/tps/shared/conf | |
| parent | 2b5f9e1630bae2e755093447b08c2236ce8db158 (diff) | |
| download | pki-0b779ffe4d29474b4f75370e4da9d7723d9bfec5.tar.gz pki-0b779ffe4d29474b4f75370e4da9d7723d9bfec5.tar.xz pki-0b779ffe4d29474b4f75370e4da9d7723d9bfec5.zip | |
Renamed token status TEMP_LOST to SUSPENDED.
The token status TEMP_LOST has been renamed to SUSPENDED such that
it can be used more general contexts.
To simplify the transition, the CLIs and the REST API will continue
to accept TEMP_LOST but it will be converted internally into
SUSPENDED and a deprecation warning will be generated.
https://fedorahosted.org/pki/ticket/2286
Diffstat (limited to 'base/tps/shared/conf')
| -rw-r--r-- | base/tps/shared/conf/CS.cfg.in | 4 | ||||
| -rw-r--r-- | base/tps/shared/conf/token-states.properties | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/base/tps/shared/conf/CS.cfg.in b/base/tps/shared/conf/CS.cfg.in index 39e504976..b5441a0a1 100644 --- a/base/tps/shared/conf/CS.cfg.in +++ b/base/tps/shared/conf/CS.cfg.in @@ -1957,7 +1957,7 @@ tokendb._067=# - has transitions between the following states tokendb._068=# UNINITIALIZED = 0, tokendb._069=# DAMAGED = 1, tokendb._070=# PERM_LOST = 2, -tokendb._071=# TEMP_LOST = 3, +tokendb._071=# SUSPENDED = 3, tokendb._072=# ACTIVE = 4, tokendb._073=# TEMP_LOST_PERM_LOST = 5, tokendb._074=# TERMINATED = 6 @@ -2026,7 +2026,7 @@ tps._009=# - token operations, like formatting and enrollment have transitions tps._010=# UNINITIALIZED = 0, tps._011=# DAMAGED = 1, tps._012=# PERM_LOST = 2, -tps._013=# TEMP_LOST = 3, +tps._013=# SUSPENDED = 3, tps._014=# ACTIVE = 4, tps._015=# TEMP_LOST_PERM_LOST = 5, tps._016=# TERMINATED = 6 diff --git a/base/tps/shared/conf/token-states.properties b/base/tps/shared/conf/token-states.properties index a64d940c6..3c7e7d6da 100644 --- a/base/tps/shared/conf/token-states.properties +++ b/base/tps/shared/conf/token-states.properties @@ -1,7 +1,7 @@ # Token states UNINITIALIZED = Uninitialized ACTIVE = Active -TEMP_LOST = Temporarily lost +SUSPENDED = Temporarily lost/suspended PERM_LOST = Permanently lost DAMAGED = Physically damaged TEMP_LOST_PERM_LOST = Temporarily lost then permanently lost @@ -10,13 +10,13 @@ TERMINATED = Terminated # Token state transitions UNINITIALIZED.DAMAGED = This token has been physically damaged. UNINITIALIZED.PERM_LOST = This token has been permanently lost. -UNINITIALIZED.TEMP_LOST = This token has been temporarily lost. +UNINITIALIZED.SUSPENDED = This token has been temporarily lost/suspended. UNINITIALIZED.TERMINATED = This token has been terminated. -TEMP_LOST.ACTIVE = This temporarily lost token has been found. -TEMP_LOST.PERM_LOST = This temporarily lost token has become permanently lost. -TEMP_LOST.TERMINATED = This temporarily lost token has been terminated. -TEMP_LOST.UNINITIALIZED = This temporarily lost token has been found. +SUSPENDED.ACTIVE = This temporarily lost/suspended token has been found. +SUSPENDED.PERM_LOST = This temporarily lost/suspended token has become permanently lost. +SUSPENDED.TERMINATED = This temporarily lost/suspended token has been terminated. +SUSPENDED.UNINITIALIZED = This temporarily lost/suspended token has been found. ACTIVE.DAMAGED = This token has been physically damaged. ACTIVE.PERM_LOST = This token has been permanently lost. -ACTIVE.TEMP_LOST = This token has been temporarily lost. +ACTIVE.SUSPENDED = This token has been temporarily lost/suspended. ACTIVE.TERMINATED = This token has been terminated. |
