feat: add default locales
This commit is contained in:
parent
0e1ced3229
commit
93f41feaa0
1 changed files with 12 additions and 1 deletions
13
blend-inst
13
blend-inst
|
@ -10,6 +10,7 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
|
import yaml
|
||||||
import signal
|
import signal
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
@ -322,6 +323,16 @@ def inst_users(config):
|
||||||
# Akshara
|
# Akshara
|
||||||
|
|
||||||
def inst_akshara(config):
|
def inst_akshara(config):
|
||||||
|
exec_chroot(
|
||||||
|
['rm', '-f', '/etc/locale.gen'])
|
||||||
|
for locale in ['en_US.UTF-8', 'de_DE.UTF-8', 'fr_FR.UTF-8', 'es_ES.UTF-8', 'zh_CN.UTF-8', 'ja_JP.UTF-8', 'ru_RU.UTF-8', 'ar_EG.UTF-8']:
|
||||||
|
exec_chroot(
|
||||||
|
['bash', '-c', f'echo "{locale}" >> /etc/locale.gen'])
|
||||||
|
exec_chroot(
|
||||||
|
['locale-gen'])
|
||||||
|
exec_chroot(
|
||||||
|
['bash', '-c', f'echo "LANG=en_US.UTF-8" >> /etc/locale.gen'])
|
||||||
|
|
||||||
system_config = {
|
system_config = {
|
||||||
'repo': 'https://pkg-repo.blendos.co',
|
'repo': 'https://pkg-repo.blendos.co',
|
||||||
'impl': 'http://github.com/blend-os/tracks/raw/main',
|
'impl': 'http://github.com/blend-os/tracks/raw/main',
|
||||||
|
@ -340,7 +351,7 @@ def inst_akshara(config):
|
||||||
]
|
]
|
||||||
|
|
||||||
if testing == False:
|
if testing == False:
|
||||||
with open('/system.yaml', 'w') as system_config_file:
|
with open('/mnt/system.yaml', 'w') as system_config_file:
|
||||||
yaml.dump(system_config, system_config_file)
|
yaml.dump(system_config, system_config_file)
|
||||||
else:
|
else:
|
||||||
print(system_config)
|
print(system_config)
|
||||||
|
|
Loading…
Reference in a new issue