We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55bfdd commit 7454a5bCopy full SHA for 7454a5b
images/ubuntu/scripts/build/configure-dpkg.sh
@@ -6,7 +6,7 @@
6
7
# Source the helpers for use with the script
8
source $HELPER_SCRIPTS/etc-environment.sh
9
-
+source $HELPER_SCRIPTS/os.sh
10
# This is the anti-frontend. It never interacts with you at all,
11
# and makes the default answers be used for all questions. It
12
# might mail error messages to root, but that's it; otherwise it
@@ -30,3 +30,9 @@ cat <<EOF >> /etc/apt/apt.conf.d/10apt-autoremove
30
APT::Get::AutomaticRemove "0";
31
APT::Get::HideAutoRemove "1";
32
EOF
33
+
34
+# Install libicu70 package for Ubuntu 24
35
+if is_ubuntu24 ; then
36
+ wget http://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb
37
+ sudo apt-get install -y ./libicu70_70.1-2_amd64.deb
38
+fi
0 commit comments