home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2006 November (DVD)
/
PCWELT_11_2006.ISO
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
ubiquity
/
clock-setup
/
finish-install
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-08-30
|
320 b
|
17 lines
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
rcsfile=/target/etc/default/rcS
tmp=/tmp/rcS
db_get clock-setup/utc
if [ "$RET" = true ]; then
sed -e 's:^UTC="no":UTC="yes":' -e 's:^UTC=no:UTC=yes:' $rcsfile > $tmp
else
sed -e 's:^UTC="yes":UTC="no":' -e 's:^UTC=yes:UTC=no:' $rcsfile > $tmp
fi
mv $tmp $rcsfile