fix: cleanup

This commit is contained in:
th33xitus
2020-11-13 20:49:10 +01:00
parent 3fd9f95da3
commit e22c6be490
2 changed files with 2 additions and 16 deletions

View File

@@ -13,8 +13,6 @@ install_klipper(){
get_user_selections_klipper(){
status_msg "Initializing Klipper installation ..."
#let user choose to install systemd or init.d service
unset INST_SYSTEMD
unset INST_INITD
while true; do
echo
top_border
@@ -31,10 +29,12 @@ get_user_selections_klipper(){
read -p "${cyan}###### Please choose:${default} " action
case "$action" in
1|"")
echo -e "###### > 1) Init.d"
INST_KLIPPER_INITD="true"
INST_KLIPPER_SYSTEMD="false"
break;;
2)
echo -e "###### > 2) Systemd"
INST_KLIPPER_INITD="false"
INST_KLIPPER_SYSTEMD="true"
break;;