openhab-core/demo/app/runtime/conf/persistence/mapdb.persist
Markus Rathgeb 47194895ac specify directories so we do not rely on the current working directory (#640)
* specify directories so we do not rely on the current working directory

The current working directory has been changed between Bnd 4.1.0 and
4.2.0 and we should not rely on a specific choosen one.
We should set the appropriate directories ourself.

Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
2019-03-13 20:14:52 +01:00

16 lines
540 B
Plaintext

// persistence strategies have a name and a definition and are referred to in the "Items" section
Strategies {
// if no strategy is specified for an item entry below, the default list will be used
default = everyChange, restoreOnStartup
}
/*
* Each line in this section defines for which item(s) which strategy(ies) should be applied.
* You can list single items, use "*" for all items or "groupitem*" for all members of a group
* item (excl. the group item itself).
*/
Items {
// log all weather data on every change
Weather*;
}