summaryrefslogtreecommitdiffstats
path: root/abs/core/mythdb-initial/custom.sql
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-09-29 20:07:29 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-09-29 20:07:29 (GMT)
commit2b396807e70b58d7278825a5edd59ea1ddb9f648 (patch)
treef2b3e1d46bd501eb0e4b05b69ddd943fff7206ba /abs/core/mythdb-initial/custom.sql
parentdfd3ed704cf530934b9551fd0f07c906cd41cb81 (diff)
downloadlinhes_pkgbuild-2b396807e70b58d7278825a5edd59ea1ddb9f648.zip
linhes_pkgbuild-2b396807e70b58d7278825a5edd59ea1ddb9f648.tar.gz
linhes_pkgbuild-2b396807e70b58d7278825a5edd59ea1ddb9f648.tar.bz2
mythdb-initial: enable network control and set myth escapt to alt+esc
Diffstat (limited to 'abs/core/mythdb-initial/custom.sql')
-rw-r--r--abs/core/mythdb-initial/custom.sql12
1 files changed, 9 insertions, 3 deletions
diff --git a/abs/core/mythdb-initial/custom.sql b/abs/core/mythdb-initial/custom.sql
index 7d582d0..26a92bc 100644
--- a/abs/core/mythdb-initial/custom.sql
+++ b/abs/core/mythdb-initial/custom.sql
@@ -36,7 +36,6 @@ INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES
('HaltCommand' ,'sudo /sbin/halt' , 'apheleia'),
('RebootCommand' ,'sudo /sbin/reboot' , 'apheleia'),
('ScreenShotPath' ,'/myth/video_stuff/screenshots' , 'apheleia'),
- ('SecurityPin' ,NULL , 'apheleia'),
('Theme' ,'LinHES' , 'apheleia'),
('LircSocket' ,'/var/run/lirc/lircd' , 'apheleia');
@@ -75,11 +74,18 @@ INSERT INTO `storagegroup` (`groupname`, `hostname`, `dirname`) VALUES
('DB Backups' ,'apheleia' ,'/data/storage/disk0/backup/mythtv_backups');
INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES
+('OverrideExitMenu','3','apheleia'),
+('NetworkControlEnabled','1','apheleia'),
('SecurityPin','0000','apheleia'),
('BackendStopCommand','sudo sv stop mythbackend' ,'apheleia'),
('BackendStartCommand','sudo sv start mythbackend' ,'apheleia');
+INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES
+('MiscStatusScript','/usr/LH/bin/misc_status_info.sh','apheleia');
+
+
+UPDATE `keybindings` set `keylist` = "Alt+Esc" WHERE `action` = 'EXITPROMPT' ;
+
+
-INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES
-('MiscStatusScript','/usr/LH/bin/misc_status_info.sh','apheleia')