summaryrefslogtreecommitdiffstats
path: root/tools/pharos-validator/src/pxe_initrd/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pharos-validator/src/pxe_initrd/src/bin')
-rwxr-xr-xtools/pharos-validator/src/pxe_initrd/src/bin/enable_services.sh21
-rwxr-xr-xtools/pharos-validator/src/pxe_initrd/src/bin/initial_network.py64
-rwxr-xr-xtools/pharos-validator/src/pxe_initrd/src/bin/install_validation_tool.sh3
-rwxr-xr-xtools/pharos-validator/src/pxe_initrd/src/bin/update_pkgs.sh13
4 files changed, 0 insertions, 101 deletions
diff --git a/tools/pharos-validator/src/pxe_initrd/src/bin/enable_services.sh b/tools/pharos-validator/src/pxe_initrd/src/bin/enable_services.sh
deleted file mode 100755
index f2560af5..00000000
--- a/tools/pharos-validator/src/pxe_initrd/src/bin/enable_services.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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/tools/pharos-validator/src/pxe_initrd/src/bin/initial_network.py b/tools/pharos-validator/src/pxe_initrd/src/bin/initial_network.py
deleted file mode 100755
index 6c98f6fe..00000000
--- a/tools/pharos-validator/src/pxe_initrd/src/bin/initial_network.py
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/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/tools/pharos-validator/src/pxe_initrd/src/bin/install_validation_tool.sh b/tools/pharos-validator/src/pxe_initrd/src/bin/install_validation_tool.sh
deleted file mode 100755
index a6688663..00000000
--- a/tools/pharos-validator/src/pxe_initrd/src/bin/install_validation_tool.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-cd /usr/src/validation_tool/ && ./setup.py install
diff --git a/tools/pharos-validator/src/pxe_initrd/src/bin/update_pkgs.sh b/tools/pharos-validator/src/pxe_initrd/src/bin/update_pkgs.sh
deleted file mode 100755
index 2ac095fd..00000000
--- a/tools/pharos-validator/src/pxe_initrd/src/bin/update_pkgs.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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