diff options
author | Serge Schneider <[email protected]> | 2017-08-31 11:24:01 +0100 |
---|---|---|
committer | Serge Schneider <[email protected]> | 2017-08-31 11:24:01 +0100 |
commit | b8c94731c5e9630a934e27c9e089b62fa2907fa2 (patch) | |
tree | 405af7176681c6bf1f221cf556c0e6f8850482b0 /stage1 | |
parent | c0513c547adf7bb85d91ccea97453d7d91ce0c60 (diff) |
stage1: fix symlink creation
Fixes #100
Diffstat (limited to 'stage1')
-rwxr-xr-x | stage1/02-net-tweaks/00-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/02-net-tweaks/00-run.sh b/stage1/02-net-tweaks/00-run.sh index 88fb857..174b9f8 100755 --- a/stage1/02-net-tweaks/00-run.sh +++ b/stage1/02-net-tweaks/00-run.sh @@ -3,4 +3,4 @@ install -m 644 files/ipv6.conf ${ROOTFS_DIR}/etc/modprobe.d/ipv6.conf install -m 644 files/hostname ${ROOTFS_DIR}/etc/hostname -ln -s /dev/null ${ROOTFS_DIR}/etc/systemd/network/99-default.link +ln -sf /dev/null ${ROOTFS_DIR}/etc/systemd/network/99-default.link |