diff options
author | James Meyer <james.meyer@operamail.com> | 2011-11-09 18:33:43 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2011-11-09 18:33:43 (GMT) |
commit | cf9eef46eeefba08723199fc7f7bd3dd2f1e2281 (patch) | |
tree | db097020e34d002d9e111ce781464f2dc417c2f5 /build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process | |
parent | 6655d691e62b14c0102fd5df579008c9c5285a84 (diff) | |
download | linhes_dev-cf9eef46eeefba08723199fc7f7bd3dd2f1e2281.zip |
profile-sync: testing->release
Diffstat (limited to 'build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process')
3 files changed, 29 insertions, 1 deletions
diff --git a/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/locale.py b/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/locale.py new file mode 100644 index 0000000..70cfcbd --- /dev/null +++ b/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/locale.py @@ -0,0 +1,23 @@ +def genlocale(): + #logging.info("Generating locales") + locale_list=[ "en_US ISO-8859-1", "en_US.UTF-8 UTF-8" , "de_DE.UTF-8", "da_DK.utf8", "en_DK.utf8", "it_IT.utf8", "de_DE.UTF-8"] + #locale_list=['UTF-8', 'en_US ISO-8859-1'] + + localefile="/etc/locale.gen" + f = open(localefile) + lines = f.readlines() + f.close() + + f = open(localefile,'w') + + for line in lines: + outline = line + for locale in locale_list: + #print locale, line + if locale in line: + outline = line.replace('#','') + f.write(outline) + + f.close + +genlocale() diff --git a/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/modify_chroot.sh b/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/modify_chroot.sh index 4b91959..63d52eb 100755 --- a/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/modify_chroot.sh +++ b/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/modify_chroot.sh @@ -15,3 +15,8 @@ cp -f /.post_process/menu.lst /boot/grub/menu.lst cp -f /etc/skel/.bash* /root/ rm -f /etc/ssh/ssh_host*key* +python2 /.post_process/locale.py +echo "generating locales" +/usr/sbin/locale-gen + + diff --git a/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/rc.conf b/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/rc.conf index 391c913..1d2bb7f 100755 --- a/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/rc.conf +++ b/build_tools/larch8/larch0/profiles/linhes-remote-stable-i686/post_process/rc.conf @@ -67,5 +67,5 @@ HOSTNAME=`cat /etc/hostname` #The following is only used on the install. After the first boot everything is set from /etc/net. #DAEMONS=(syslog-ng network netfs crond) -DAEMONS=(fbsplash !syslog-ng !hotplug !pcmcia !network !mysqld !dbus !avahi-daemon) +DAEMONS=(fbsplash !syslog-ng !hotplug !pcmcia !network !mysqld dbus avahi-daemon) # End of file |