syncthing: rescanInterval is 8 hours on media,

to avoid starting the hard drive when not needed
This commit is contained in:
Ingolf Wagner 2020-01-26 14:33:50 +13:00
parent b0eb5e5fcd
commit 5f15710bec
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 11 additions and 0 deletions

View file

@ -45,22 +45,27 @@
movies = { movies = {
enable = true; enable = true;
path = "/media/movies"; path = "/media/movies";
rescanInterval = 8 * 3600;
}; };
music-library = { music-library = {
enable = true; enable = true;
path = "/media/music-library"; path = "/media/music-library";
rescanInterval = 8 * 3600;
}; };
podcasts = { podcasts = {
enable = true; enable = true;
path = "/media/podcasts"; path = "/media/podcasts";
rescanInterval = 8 * 3600;
}; };
series = { series = {
enable = true; enable = true;
path = "/media/series"; path = "/media/series";
rescanInterval = 8 * 3600;
}; };
smartphone-music = { smartphone-music = {
enable = true; enable = true;
path = "/media/smartphone-music"; path = "/media/smartphone-music";
rescanInterval = 8 * 3600;
}; };
}; };
}; };

View file

@ -68,26 +68,32 @@
music-library-free = { music-library-free = {
enable = true; enable = true;
path = "/media/syncthing/music-library-free"; path = "/media/syncthing/music-library-free";
rescanInterval = 8 * 3600;
}; };
samples = { samples = {
enable = true; enable = true;
path = "/media/syncthing/samples"; path = "/media/syncthing/samples";
rescanInterval = 8 * 3600;
}; };
movies = { movies = {
enable = true; enable = true;
path = "/media/syncthing/movies"; path = "/media/syncthing/movies";
rescanInterval = 8 * 3600;
}; };
music-library = { music-library = {
enable = true; enable = true;
path = "/media/syncthing/music-library"; path = "/media/syncthing/music-library";
rescanInterval = 8 * 3600;
}; };
podcasts = { podcasts = {
enable = true; enable = true;
path = "/media/syncthing/podcasts"; path = "/media/syncthing/podcasts";
rescanInterval = 8 * 3600;
}; };
series = { series = {
enable = true; enable = true;
path = "/media/syncthing/series"; path = "/media/syncthing/series";
rescanInterval = 8 * 3600;
}; };
}; };