mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-12 14:11:54 +01:00
a37cceab67
* mavenize openHAB and integrate mavenized ESH repository Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
16 lines
540 B
Plaintext
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*;
|
|
}
|