From 9c9ab738acedc48b0fb10840624060a19c05ea75 Mon Sep 17 00:00:00 2001 From: Tobias Mueller Date: Mon, 16 Oct 2023 12:04:46 +0200 Subject: [PATCH] functions: Remove unsued restore function This is not referenced anywhere so I guess that we don't need it. --- files/lib/blue-merle/functions.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/files/lib/blue-merle/functions.sh b/files/lib/blue-merle/functions.sh index 2345439..2ed323e 100644 --- a/files/lib/blue-merle/functions.sh +++ b/files/lib/blue-merle/functions.sh @@ -15,14 +15,6 @@ CHECKMACSYMLINK () { fi } -# Restore gl_tertf from back-up -RESTORE_GL_TERTF () { - local loc_file="/etc/init.d/gl_tertf" - local loc_backup="/etc/init.d/gl_tertf.bak" - #local loc_location="/etc/init.d" - rm "$loc_file" - mv "$loc_backup" "$loc_file" -} UNICAST_MAC_GEN () { loc_mac_numgen=`python3 -c "import random; print(f'{random.randint(0,2**48) & 0b111111101111111111111111111111111111111111111111:0x}'.zfill(12))"`