Accept router advertisements on all images (SLAAC)
This commit is contained in:
parent
7779716529
commit
e809052e29
3 changed files with 10 additions and 1 deletions
|
@ -93,6 +93,9 @@ cat > /mnt/etc/hosts << EOF
|
|||
|
||||
EOF
|
||||
|
||||
# Accept router advertisements for SLAAC.
|
||||
run_root sysctl -w net.ipv6.conf.all.accept_ra=1
|
||||
|
||||
# Configure package sources and update package index.
|
||||
cat >/mnt/etc/apt/sources.list <<EOF
|
||||
deb $APT_MIRROR $RELEASE main
|
||||
|
|
|
@ -99,7 +99,10 @@ cat > /mnt/etc/hosts << EOF
|
|||
|
||||
EOF
|
||||
|
||||
# Initalize base services.
|
||||
# Accept router advertisements for SLAAC.
|
||||
run_root sysctl -w net.ipv6.conf.all.accept_ra=1
|
||||
|
||||
# Initialize base services.
|
||||
run_root systemd-machine-id-setup
|
||||
|
||||
run_root ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||
|
|
|
@ -93,6 +93,9 @@ cat > /mnt/etc/hosts << EOF
|
|||
|
||||
EOF
|
||||
|
||||
# Accept router advertisements for SLAAC.
|
||||
run_root sysctl -w net.ipv6.conf.all.accept_ra=1
|
||||
|
||||
# Configure package sources and update package index.
|
||||
cat >/mnt/etc/apt/sources.list <<EOF
|
||||
deb $APT_MIRROR $RELEASE main restricted universe multiverse
|
||||
|
|
Loading…
Reference in a new issue