summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2021-04-20 13:58:39 +0200
committerSimon Rettberg2021-04-20 14:11:29 +0200
commit92ade04081a24f361e7a25212414c8d59862d4eb (patch)
treef3ade3ee849563ba85e0c57394cb338538cb9ca8
parent[SSUS] Add function to add all files from a static_files module (diff)
downloadsetup-scripts-92ade04081a24f361e7a25212414c8d59862d4eb.tar.gz
setup-scripts-92ade04081a24f361e7a25212414c8d59862d4eb.tar.xz
setup-scripts-92ade04081a24f361e7a25212414c8d59862d4eb.zip
[SSPS] Remove unused functions
-rw-r--r--satellit_installer/includes/10-install_ipxe.inc17
1 files changed, 0 insertions, 17 deletions
diff --git a/satellit_installer/includes/10-install_ipxe.inc b/satellit_installer/includes/10-install_ipxe.inc
index c200807..1668bd0 100644
--- a/satellit_installer/includes/10-install_ipxe.inc
+++ b/satellit_installer/includes/10-install_ipxe.inc
@@ -26,20 +26,3 @@ compile_ipxe() {
fi
echo
}
-
-ipxe_enable () {
- local var
- while [ $# -gt 0 ]; do
- var="$1"
- sed -i -r "s~^\\s*(//\\s*#define|#undef)\\s+${var}(\\s|$)~#define ${var} /* enabled by bwLehrpool */\\2~" "$PATH_IPXE"/src/config/*.h || pwarning "Could not enable iPXE option $var"
- shift
- done
-}
-ipxe_disable () {
- local var
- while [ $# -gt 0 ]; do
- var="$1"
- sed -i -r "s~^\\s*(//\\s*#undef|#define)\\s+${var}(\\s|\$)~#undef ${var} /* disabled by bwLehrpool */\\2~" "$PATH_IPXE"/src/config/*.h || pwarning "Could not disable iPXE option $var"
- shift
- done
-}