describe startup modes in faq

This commit is contained in:
Olof hagsand 2017-11-19 18:27:25 +01:00
parent 548ffd2da6
commit 96bc17bfa6
3 changed files with 44 additions and 5 deletions

View file

@ -49,7 +49,7 @@
type enumeration{
enum none{
description "Do not touch running state
Typical after crash when running state and db are synched";
Typically after crash when running state and db are synched";
}
enum init{
description "Initialize running state.
@ -57,11 +57,11 @@
}
enum running{
description "Commit running db configuration into running state
Usecase: after reboot if a persistent running db exists";
After reboot if a persistent running db exists";
}
enum startup{
description "Commit startup configuration into running state
Usecase: after reboot when no persistent running db exists";
After reboot when no persistent running db exists";
}
}
}