diff options
author | Britney Fransen <brfransen@gmail.com> | 2022-12-30 19:30:00 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2022-12-30 19:30:00 (GMT) |
commit | cf6753486785d45f571d06749dd85c73dcb20756 (patch) | |
tree | 95e751589d20b3bcc0c48e42995c642dab3bc931 /linhes/linhes-templates/templates | |
parent | 64f781e502051636a295be327cea16e720455c07 (diff) | |
download | linhes_pkgbuild-cf6753486785d45f571d06749dd85c73dcb20756.zip linhes_pkgbuild-cf6753486785d45f571d06749dd85c73dcb20756.tar.gz linhes_pkgbuild-cf6753486785d45f571d06749dd85c73dcb20756.tar.bz2 |
linhes-templates: modify custom.sql
Diffstat (limited to 'linhes/linhes-templates/templates')
-rw-r--r-- | linhes/linhes-templates/templates/db/custom.sql | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/linhes/linhes-templates/templates/db/custom.sql b/linhes/linhes-templates/templates/db/custom.sql index 1f91bae..9be8ab0 100644 --- a/linhes/linhes-templates/templates/db/custom.sql +++ b/linhes/linhes-templates/templates/db/custom.sql @@ -1,9 +1,3 @@ --- -DELETE FROM `settings` where `value`='HostMyhostname'; --- -INSERT INTO `settings` (`value`,`data`,`hostname`) VALUES ('HostMyhostname','type_hostname_here','apheleia'); --- - -- Clear out old values because mysql is mysql DELETE from settings where value in ( @@ -25,7 +19,7 @@ INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES ('BackendServerIP6' ,'::1' , 'apheleia'), ('HaltCommand' ,'sudo /sbin/halt' , 'apheleia'), ('RebootCommand' ,'sudo /sbin/reboot' , 'apheleia'), - ('Theme' ,'LinHES' , 'apheleia'), + ('Theme' ,'LinHES' , 'apheleia'); -- --INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES @@ -53,6 +47,7 @@ INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES -- /myth based storage groups are obsolete, add_storage.py will create the ones it needs. +-- putting in artwork ones on disk0 INSERT INTO `storagegroup` (`groupname`, `hostname`, `dirname`) VALUES -- ('Default' ,'apheleia' ,'/myth/tv/'), -- ('LiveTV' ,'apheleia' ,'/myth/tv/live/'), @@ -113,17 +108,15 @@ INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES ('UserJobDesc4','','apheleia'); -- - - INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES ('MiscStatusScript','/usr/bin/misc_status_info.sh','apheleia'); --UPDATE `keybindings` set `keylist` = "Alt+Esc" WHERE `action` = 'EXITPROMPT' ; --- Add a dummy tuner so BE will at least start -INSERT INTO `capturecard` (`videodevice`,`cardtype`,`defaultinput`,`hostname`,`sourceid`) VALUES -('file://tmp/demo.mpg' , 'DEMO', 'Television', 'apheleia', '1'); +-- Add a dummy tuner and videosource so BE will at least start +INSERT INTO `capturecard` (`videodevice`,`cardtype`,`defaultinput`,`hostname`) VALUES +('file://tmp/demo.mpg' , 'DEMO', 'Television', 'apheleia'); -INSERT INTO `videosource` (`name`, `xmltvgrabber`) VALUES -('DEMO_VIDEO_SOURCE' , '/bin/true'); +--INSERT INTO `videosource` (`name`, `xmltvgrabber`) VALUES +--('DEMO_VIDEO_SOURCE' , '/bin/true'); |