diff options
Diffstat (limited to 'abs/core/mythdb-initial/custom.sql')
-rw-r--r-- | abs/core/mythdb-initial/custom.sql | 32 |
1 files changed, 25 insertions, 7 deletions
diff --git a/abs/core/mythdb-initial/custom.sql b/abs/core/mythdb-initial/custom.sql index dcba7b4..0f21e3a 100644 --- a/abs/core/mythdb-initial/custom.sql +++ b/abs/core/mythdb-initial/custom.sql @@ -44,13 +44,6 @@ INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES ('CDDevice' ,'/dev/cdrom' , 'apheleia'), ('MusicAudioDevice' ,'default' , 'apheleia'), ('MythArchiveCopyRemoteFiles' ,'1' , 'apheleia'), - ('ScreenShotPath' ,'/myth/video_stuff/screenshots' , 'apheleia'), - ('VideoStartupDir' ,'/myth/video' , 'apheleia'), - ('mythvideo.TrailersDir' ,'/myth/video_stuff/trailers' , 'apheleia'), - ('VideoArtworkDir' ,'/myth/video_stuff/coverart' , 'apheleia'), - ('mythvideo.screenshotDir' ,'/myth/video_stuff/screenshots' , 'apheleia'), - ('mythvideo.bannerDir' ,'/myth/video_stuff/banners' , 'apheleia'), - ('mythvideo.fanartDir' ,'/myth/video_stuff/fanart' , 'apheleia'), ('GalleryDir' ,'/myth/gallery' , 'apheleia'), ('MusicLocation' ,'/myth/music/' , 'apheleia'), ('mythgame.screenshotdir' ,'/myth/games/screenshots' , 'apheleia'), @@ -59,6 +52,31 @@ INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES ('MythArchiveTempDir' ,'/myth/tmp' , 'apheleia'); +-- MythVideo old local dir..replaced by storage groups, but should set values to null + +INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES +('ScreenShotPath' ,'' , 'apheleia'), +('VideoStartupDir' ,'' , 'apheleia'), +('mythvideo.TrailersDir' ,'' , 'apheleia'), +('VideoArtworkDir' ,'' , 'apheleia'), +('mythvideo.screenshotDir' ,'' , 'apheleia'), +('mythvideo.bannerDir' ,'' , 'apheleia'), +('mythvideo.fanartDir' ,'' , 'apheleia'); + +-- MythVideo old local dir..replaced by storage groups +/* +INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES + ('ScreenShotPath' ,'/myth/video_stuff/screenshots' , 'apheleia'), + ('VideoStartupDir' ,'/myth/video' , 'apheleia'), + ('mythvideo.TrailersDir' ,'/myth/video_stuff/trailers' , 'apheleia'), + ('VideoArtworkDir' ,'/myth/video_stuff/coverart' , 'apheleia'), + ('mythvideo.screenshotDir' ,'/myth/video_stuff/screenshots' , 'apheleia'), + ('mythvideo.bannerDir' ,'/myth/video_stuff/banners' , 'apheleia'), + ('mythvideo.fanartDir' ,'/myth/video_stuff/fanart' , 'apheleia'); +*/ + + + INSERT INTO `storagegroup` (`groupname`, `hostname`, `dirname`) VALUES ('Default' ,'apheleia' ,'/myth/tv/'), ('LiveTV' ,'apheleia' ,'/myth/tv/live/'), |