-
Notifications
You must be signed in to change notification settings - Fork 21
/
install.sh
60 lines (50 loc) · 1.73 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
KLIPPER_PATH="${HOME}/klipper"
INSTALL_PATH="${HOME}/klipper-toolchanger"
set -eu
export LC_ALL=C
function preflight_checks {
if [ "$EUID" -eq 0 ]; then
echo "[PRE-CHECK] This script must not be run as root!"
exit -1
fi
if [ "$(sudo systemctl list-units --full -all -t service --no-legend | grep -F 'klipper.service')" ]; then
printf "[PRE-CHECK] Klipper service found! Continuing...\n\n"
else
echo "[ERROR] Klipper service not found, please install Klipper first!"
exit -1
fi
}
function check_download {
local installdirname installbasename
installdirname="$(dirname ${INSTALL_PATH})"
installbasename="$(basename ${INSTALL_PATH})"
if [ ! -d "${INSTALL_PATH}" ]; then
echo "[DOWNLOAD] Downloading repository..."
if git -C $installdirname clone https://github.com/viesturz/klipper-toolchanger.git $installbasename; then
chmod +x ${INSTALL_PATH}/install.sh
printf "[DOWNLOAD] Download complete!\n\n"
else
echo "[ERROR] Download of git repository failed!"
exit -1
fi
else
printf "[DOWNLOAD] repository already found locally. Continuing...\n\n"
fi
}
function link_extension {
echo "[INSTALL] Linking extension to Klipper..."
for file in "${INSTALL_PATH}"/klipper/extras/*.py; do ln -sfn "${file}" "${KLIPPER_PATH}/klippy/extras/"; done
}
function restart_klipper {
echo "[POST-INSTALL] Restarting Klipper..."
sudo systemctl restart klipper
}
printf "\n======================================\n"
echo "- Klipper toolchanger install script -"
printf "======================================\n\n"
# Run steps
preflight_checks
check_download
link_extension
restart_klipper