repo.or.cz
/
tails-test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
(no commit message)
[tails-test.git]
/
config
/
chroot_local-hooks
/
20-load_gconf_default_settings
blob
14b02a6dc437600b8438be3cc11cc7f30c6997c2
1
#!/bin/sh
2
3
set -e
4
5
# Load GConf settings.
6
7
echo
"Loading GConf settings"
8
9
gct
() {
10
gconftool-2 \
11
--direct
\
12
--config-source
xml
:
readwrite
:/
etc
/
gconf
/
gconf.xml.defaults \
13
"
${@}
"
14
}
15
16
for
file
in
/
usr
/
shar
e
/
amnesia
/
gconf
/*
.xml
;
do
17
gct
--load
"
${file}
"
18
done