summaryrefslogtreecommitdiff
path: root/archiso/hooks/archiso_pxe_common
diff options
context:
space:
mode:
authorGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2012-08-25 15:14:51 -0300
committerGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2012-08-25 15:14:51 -0300
commit5df61f0c9e89725b59d0e975d6e320fa0ea579ba (patch)
treec29627857c9ae5243cf27547f80edcf24e35f78d /archiso/hooks/archiso_pxe_common
parentb629c4a4adb67f76f78bed00bcdf7ebcf36f813b (diff)
downloadarchiso32-5df61f0c9e89725b59d0e975d6e320fa0ea579ba.tar.xz
[archiso] Rework Makefile / Reorder files
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso/hooks/archiso_pxe_common')
-rw-r--r--archiso/hooks/archiso_pxe_common50
1 files changed, 0 insertions, 50 deletions
diff --git a/archiso/hooks/archiso_pxe_common b/archiso/hooks/archiso_pxe_common
deleted file mode 100644
index d8ac709..0000000
--- a/archiso/hooks/archiso_pxe_common
+++ /dev/null
@@ -1,50 +0,0 @@
-# vim: set ft=sh:
-
-run_hook () {
- local i net_mac bootif_mac bootif_dev
- # These variables will be parsed from /tmp/net-*.conf generated by ipconfig
- local DEVICE
- local IPV4ADDR IPV4BROADCAST IPV4NETMASK IPV4GATEWAY IPV4DNS0 IPV4DNS1
- local HOSTNAME DNSDOMAIN NISDOMAIN ROOTSERVER ROOTPATH
- local filename
- # /tmp/net-*.conf
-
- if [[ -n "${ip}" ]]; then
- if [[ -n "${BOOTIF}" ]]; then
- bootif_mac=${BOOTIF#01-}
- bootif_mac=${bootif_mac//-/:}
- for i in /sys/class/net/*/address; do
- read net_mac < ${i}
- if [[ "${bootif_mac}" == "${net_mac}" ]]; then
- bootif_dev=${i#/sys/class/net/}
- bootif_dev=${bootif_dev%/address}
- break
- fi
- done
- ip="${ip}::${bootif_dev}"
- fi
-
- # setup network and save some values
- ipconfig "ip=${ip}"
-
- . /tmp/net-*.conf
-
- pxeserver=${ROOTSERVER}
-
- # setup DNS resolver
- if [[ "${IPV4DNS0}" != "0.0.0.0" ]]; then
- echo "nameserver ${IPV4DNS0}" > /etc/resolv.conf
- fi
- if [[ "${IPV4DNS1}" != "0.0.0.0" ]]; then
- echo "nameserver ${IPV4DNS1}" >> /etc/resolv.conf
- fi
- fi
-}
-
-run_latehook () {
- [[ -z "${copy_resolvconf}" ]] && copy_resolvconf="y"
-
- if [[ "${copy_resolvconf}" != "n" && -f /etc/resolv.conf ]]; then
- cp /etc/resolv.conf /new_root/etc/resolv.conf
- fi
-}