You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "--> Ensuring locales package is installed..."
42
-
apt-get install -y locales
39
+
# The redundant 'apt-get install locales' has been removed.
43
40
44
41
echo "--> Configuring locales..."
45
42
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
46
43
locale-gen
47
44
update-locale LANG="en_US.UTF-8"
48
-
49
45
if [ "$CI" = "true" ]; then
50
46
echo "--> CI environment detected. Setting dummy passwords..."
51
47
echo "root:luminos-ci" | chpasswd
@@ -63,13 +59,10 @@ rm /tmp/configure.sh
63
59
EOF
64
60
65
61
chmod +x "$LUMINOS_CHROOT_DIR/tmp/configure.sh"
66
-
67
62
echo"--> Mounting virtual filesystems for chroot..."
68
63
mount --bind /dev "$LUMINOS_CHROOT_DIR/dev"; mount --bind /dev/pts "$LUMINOS_CHROOT_DIR/dev/pts"; mount -t proc /proc "$LUMINOS_CHROOT_DIR/proc"; mount -t sysfs /sys "$LUMINOS_CHROOT_DIR/sys"
69
-
70
64
echo"--> Entering chroot to perform configuration..."
0 commit comments