104 lines
3.2 KiB
Bash
104 lines
3.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
#=======================================================================#
|
|
# Copyright (C) 2022 mainsail-crew <https://github.com/mainsail-crew> #
|
|
# Author: Dominik Willner <th33xitus@gmail.com> #
|
|
# #
|
|
# This file is part of virtual-klipper-printer #
|
|
# https://github.com/mainsail-crew/virtual-klipper-printer #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
#=======================================================================#
|
|
|
|
set -e
|
|
|
|
REQUIRED_FOLDERS=(
|
|
"${HOME}/printer_data"
|
|
"${HOME}/printer_data/config"
|
|
"${HOME}/printer_data/logs"
|
|
"${HOME}/printer_data/gcodes"
|
|
"${HOME}/printer_data/webcam_images"
|
|
"${HOME}/printer_data/timelapse"
|
|
"${HOME}/printer_data/database"
|
|
)
|
|
|
|
function status_msg() {
|
|
echo "###[$(date +%T)]: ${1}"
|
|
}
|
|
|
|
######
|
|
# Test for correct ownership of all required folders
|
|
###
|
|
function check_folder_perms() {
|
|
status_msg "Check folders permissions ..."
|
|
for folder in "${REQUIRED_FOLDERS[@]}"; do
|
|
if [[ $(stat -c "%U" "${folder}") != "printer" ]]; then
|
|
status_msg "chown for user: 'printer' on folder: ${folder}"
|
|
sudo chown printer:printer "${folder}"
|
|
fi
|
|
done
|
|
status_msg "OK!"
|
|
}
|
|
|
|
######
|
|
# Copy example configs if ~/printer_data/config is empty
|
|
###
|
|
function copy_example_configs() {
|
|
if [[ ! "$(ls -A "${HOME}/printer_data/config")" ]]; then
|
|
status_msg "Directory ${HOME}/printer_data/config is empty!"
|
|
status_msg "Copy example configs ..."
|
|
cp -R ~/example-configs/* ~/printer_data/config
|
|
status_msg "OK!"
|
|
fi
|
|
}
|
|
|
|
######
|
|
# Copy dummy images if ~/webcam_images is empty
|
|
###
|
|
function copy_dummy_images() {
|
|
if [[ ! "$(ls -A "${HOME}/printer_data/webcam_images")" ]]; then
|
|
status_msg "Directory ${HOME}/printer_data/webcam_images is empty!"
|
|
status_msg "Copy dummy images ..."
|
|
cp -R ~/mjpg_streamer_images/*.jpg ~/printer_data/webcam_images
|
|
status_msg "OK!"
|
|
fi
|
|
}
|
|
|
|
######
|
|
# Link moonraker-timelapse component to moonraker components
|
|
###
|
|
function link_timelapse() {
|
|
local component_source="${HOME}/moonraker-timelapse/component/timelapse.py"
|
|
local component_target="${HOME}/moonraker/moonraker/components/timelapse.py"
|
|
local macro_source="${HOME}/moonraker-timelapse/klipper_macro/timelapse.cfg"
|
|
local macro_target="${HOME}/printer_data/config/addons/timelapse.cfg"
|
|
|
|
if [[ -f ${component_source} && ! -h ${component_target} ]]; then
|
|
status_msg "Linking moonraker-timelapse component ..."
|
|
ln -sf "${component_source}" "${component_target}"
|
|
status_msg "OK!"
|
|
fi
|
|
|
|
if [[ -f ${macro_source} && ! -h ${macro_target} ]]; then
|
|
status_msg "Linking timelapse.cfg ..."
|
|
ln -sf "${macro_source}" "${macro_target}"
|
|
status_msg "OK!"
|
|
fi
|
|
}
|
|
|
|
#===================================================#
|
|
#===================================================#
|
|
|
|
[[ ! -e /bin/systemctl ]] && sudo -S ln -s /bin/true /bin/systemctl
|
|
|
|
check_folder_perms
|
|
copy_example_configs
|
|
copy_dummy_images
|
|
link_timelapse
|
|
|
|
sudo -S rm /bin/systemctl
|
|
sudo -S ln -s /bin/service_control /bin/systemctl
|
|
|
|
cd ~ && status_msg "Everything is ready! Starting ..."
|
|
/usr/bin/supervisord
|