summaryrefslogtreecommitdiffstats
path: root/validator/src/pxe_initrd/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'validator/src/pxe_initrd/src/bin')
-rwxr-xr-xvalidator/src/pxe_initrd/src/bin/enable_services.sh21
-rwxr-xr-xvalidator/src/pxe_initrd/src/bin/initial_network.py64
-rwxr-xr-xvalidator/src/pxe_initrd/src/bin/install_validation_tool.sh3
-rwxr-xr-xvalidator/src/pxe_initrd/src/bin/update_pkgs.sh13
4 files changed, 101 insertions, 0 deletions
diff --git a/validator/src/pxe_initrd/src/bin/enable_services.sh b/validator/src/pxe_initrd/src/bin/enable_services.sh
new file mode 100755
index 0000000..f2560af
--- /dev/null
+++ b/validator/src/pxe_initrd/src/bin/enable_services.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+# Source profile for $PATH just in case it wasn't auto-loaded
+source /etc/profile
+
+rc-update add mdev sysinit
+rc-update add devfs sysinit
+rc-update add dmesg sysinit
+rc-update add hostname sysinit
+rc-update add sysctl sysinit
+rc-update add syslog sysinit
+rc-update add initialnetwork sysinit
+#rc-update add networking sysinit
+#rc-update add bootmisc sysinit
+#rc-update add hwclock sysinit
+
+rc-update add mount-ro shutdown
+rc-update add killprocs shutdown
+rc-update add savecache shutdown
+
+rc-update add sshd default
diff --git a/validator/src/pxe_initrd/src/bin/initial_network.py b/validator/src/pxe_initrd/src/bin/initial_network.py
new file mode 100755
index 0000000..6c98f6f
--- /dev/null
+++ b/validator/src/pxe_initrd/src/bin/initial_network.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python3
+# bin/setup_interface
+
+# -----------------------------------------------------------------------
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# ------------------------------------------------------------------------
+
+# Author: Todd Gaunt, toddgaunt@iol.unh.edu or toddgaunt@gmail.com
+# License: Apache v2.0
+# Description: Script for setting up initial network interfaces
+# it activates dhcp on all interfaces in order to at least get the admin
+# network up
+
+import os
+import subprocess
+import netifaces
+
+def generate_interfaces_file(ifaces, os_network_file):
+ """Takes a list of interfaces and a location to save a network
+ interfaces file"""
+ interfaces = ""
+ for i in ifaces:
+ n = "auto " + str(i) + "\n" \
+ + "iface " + str(i) + " inet dhcp\n"
+ interfaces += n
+ return interfaces
+
+def set_interfaces_up(ifaces):
+ """Uses ifup command to put network devices up according to
+ interfaces file"""
+ for iface in ifaces:
+ ifupcmd = [ \
+ "ifup",
+ iface]
+ ifdowncmd = [ \
+ "ifdown",
+ iface]
+ with open(os.devnull, 'w') as fn:
+ status = subprocess.Popen(ifdowncmd, stdout=fn, stderr=fn).wait()
+ status = subprocess.Popen(ifupcmd, stdout=fn, stderr=fn).wait()
+ print(str(iface) + " " + str(status))
+
+def main():
+ os_network_file="/etc/network/interfaces"
+ ifaces = netifaces.interfaces()
+ interfaces = generate_interfaces_file(ifaces, os_network_file)
+ with open(os_network_file, 'w') as fd:
+ fd.write(interfaces)
+ set_interfaces_up(ifaces)
+
+if __name__ == "__main__":
+ main()
diff --git a/validator/src/pxe_initrd/src/bin/install_validation_tool.sh b/validator/src/pxe_initrd/src/bin/install_validation_tool.sh
new file mode 100755
index 0000000..a668866
--- /dev/null
+++ b/validator/src/pxe_initrd/src/bin/install_validation_tool.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+cd /usr/src/validation_tool/ && ./setup.py install
diff --git a/validator/src/pxe_initrd/src/bin/update_pkgs.sh b/validator/src/pxe_initrd/src/bin/update_pkgs.sh
new file mode 100755
index 0000000..2ac095f
--- /dev/null
+++ b/validator/src/pxe_initrd/src/bin/update_pkgs.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+source /etc/profile
+
+# Update package list and upgrade all packages to the latest version
+apk update && apk upgrade
+
+# Install python3 and development tools to install a python module
+apk add build-base gcc make abuild binutils linux-headers musl-dev python3-dev python3 openssh
+pip3 install --upgrade pip netifaces watchdog
+
+# Remove all the build tools to make the initrd smaller
+apk del build-base gcc make abuild binutils linux-headers musl-dev python3-dev