cc-fw-tools/RESOURCES/OPTIONS/startup_script/startup_script.sh
2024-02-23 19:20:39 +01:00

45 lines
1.3 KiB
Bash
Executable file

#!/bin/bash
# check the parameters
if [ $# != 2 ]; then
echo "usage : $0 <project_root> <startup_script>"
exit 1
fi
project_root="$1"
startup_script="$2"
# check the required tools
check_tools "sed"
# Check if $startup_script is available
if [ ! -f "$OPTIONS_DIR/startup_script/$startup_script" ]; then
echo -e "${RED}ERROR: Cannot find the file '$startup_script' ${NC}"
exit 2
fi
# Check if project root folder exists
if [ ! -d "$project_root" ]; then
echo -e "${RED}ERROR: Cannot find the folder '$project_root' ${NC}"
exit 3
fi
# Check if $project_root/RESOURCES/KEYS/mosquitto exists
if [ ! -d "$KEYS_DIR/mosquitto" ]; then
echo -e "${RED}ERROR: Cannot find the folder '$KEYS_DIR/mosquitto' ${NC}"
exit 4
fi
# Copy everything from $project_root/RESOURCES/KEYS/mosquitto to $project_root/unpacked/squashfs-root/etc/ssl/certs
mkdir -p "$ROOTFS_DIR/etc/ssl/certs"
cp -rf "$KEYS_DIR/mosquitto"/* "$ROOTFS_DIR/etc/ssl/certs"
# Move $startup_script to project root/unpacked/squashfs-root/etc
cp -rf "$OPTIONS_DIR/startup_script/$startup_script" "$ROOTFS_DIR/etc"
# Add /etc/$startup_script to $project_root/unpacked/squashfs-root/etc/rc.local before the exit 0 line
sed -i "/exit 0/i /etc/$startup_script" "$ROOTFS_DIR/etc/rc.local"
echo -e "${GREEN}INFO: Startup script '$startup_script' has been installed ${NC}"
exit 0