mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 21:07:55 +00:00
packer/alpine-linux: update install script for alpine 3.16
This commit is contained in:
parent
d906e0ace5
commit
517f612664
@ -1,28 +1,36 @@
|
||||
#!/bin/sh
|
||||
# shellcheck disable=SC2034
|
||||
|
||||
set -e
|
||||
|
||||
export HOSTNAMEOPTS="-n alpine"
|
||||
export KEYMAPOPTS="us us"
|
||||
export INTERFACESOPTS="auto lo
|
||||
# Export most answers for setup-alpine
|
||||
set -a
|
||||
KEYMAPOPTS="us us"
|
||||
HOSTNAMEOPTS="-n alpine"
|
||||
INTERFACESOPTS="auto lo
|
||||
iface lo inet loopback
|
||||
|
||||
auto eth0
|
||||
iface eth0 inet dhcp
|
||||
hostname alpine
|
||||
"
|
||||
export TIMEZONEOPTS="-z UTC"
|
||||
export PROXYOPTS="none"
|
||||
export APKREPOSOPTS="-1"
|
||||
export SSHDOPTS="-c openssh"
|
||||
export NTPOPTS="-c none"
|
||||
export BOOT_SIZE=50
|
||||
export SWAP_SIZE=0
|
||||
TIMEZONEOPTS="-z UTC"
|
||||
PROXYOPTS="none"
|
||||
APKREPOSOPTS="-1"
|
||||
SSHDOPTS="-c openssh"
|
||||
NTPOPTS="-c none"
|
||||
DISKOPTS="-m sys /dev/sda"
|
||||
BOOT_SIZE=50
|
||||
SWAP_SIZE=0
|
||||
set +a
|
||||
|
||||
# Answer to password question twice and yes to format drive
|
||||
# - Answer to password question twice
|
||||
# - Do not create unprivileged user
|
||||
# - Select disk
|
||||
# - Confirm formatting disk
|
||||
setup-alpine <<EOF
|
||||
root
|
||||
root
|
||||
sda
|
||||
sys
|
||||
no
|
||||
y
|
||||
EOF
|
||||
|
Loading…
Reference in New Issue
Block a user