1
0
mirror of https://github.com/lxc/lxc-templates.git synced 2025-08-21 04:10:55 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
zhaixiaojuan@loongson.cn
5af60f83ca
Merge e0d8f58995d58e4bcd337e80e37ba1ebe29558a2 into a0745c836a89c7776bf27dfbe5a8c9a0a9aec28b 2024-01-30 11:48:33 +08:00
zhaixiaojuan
e0d8f58995 lxc-debian: support installation of dialog-like program 2023-10-31 15:06:23 +08:00

View File

@ -367,12 +367,19 @@ download_debian()
iproute=iproute2
;;
esac
if [ `apt search dialog |grep ^dialog\/ |wc -l` != 0 ]; then
dialoglike="dialog"
elif [ `apt search whiptail |grep ^whiptail\/ |wc -l` != 0 ]; then
dialoglike="whiptail"
elif [ `apt search Xdialog |grep ^Xdialog\/ |wc -l` != 0 ]; then
dialoglike="Xdialog"
fi
packages=\
$init,\
ifupdown,\
locales,\
ca-certificates,\
dialog,\
$dialoglike,\
isc-dhcp-client,\
netbase,\
net-tools,\