install.fairie/home/dot_local/bin/post-installx/executable_post-blocky.sh

36 lines
1.8 KiB
Bash
Raw Normal View History

2024-05-05 04:05:33 +00:00
#!/usr/bin/env bash
# @file Blocky Configuration
# @brief Copies over configuration (and service file, in the case of Linux) to the appropriate system location
2024-05-28 03:45:14 +00:00
set -Eeuo pipefail
2024-05-28 03:50:11 +00:00
trap "gum log -sl error 'Script encountered an error!'" ERR
2024-05-27 11:15:03 +00:00
2024-05-05 04:05:33 +00:00
if command -v blocky > /dev/null; then
if [ -d /Applications ] && [ -d /System ]; then
### macOS
2024-05-10 02:53:38 +00:00
if [ -f "$HOME/.local/etc/blocky/config.yaml" ]; then
2024-05-28 03:50:11 +00:00
gum log -sl info 'Ensuring /usr/local/etc/blocky directory is present'
2024-05-10 02:53:38 +00:00
sudo mkdir -p /usr/local/etc/blocky
2024-05-28 03:50:11 +00:00
gum log -sl info "Copying $HOME/.local/etc/blocky/config.yaml to /usr/local/etc/blocky/config.yaml"
2024-05-10 02:53:38 +00:00
sudo cp -f "$HOME/.local/etc/blocky/config.yaml" /usr/local/etc/blocky/config.yaml
if [ -d "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/blocky" ] && [ ! -f "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/blocky/config.yaml" ]; then
2024-05-28 03:50:11 +00:00
gum log -sl info "Symlinking $HOME/.local/etc/blocky/config.yaml to ${HOMEBREW_PREFIX:-/opt/homebrew}/etc/blocky/config.yaml"
2024-05-10 02:53:38 +00:00
ln -s /usr/local/etc/blocky/config.yaml "${HOMEBREW_PREFIX:-/opt/homebrew}/etc/blocky/config.yaml"
fi
fi
2024-05-05 04:05:33 +00:00
else
### Linux
2024-05-28 03:50:11 +00:00
gum log -sl info 'Ensuring /usr/local/etc/blocky is created'
2024-05-05 04:05:33 +00:00
sudo mkdir -p /usr/local/etc/blocky
2024-05-10 02:53:38 +00:00
sudo cp -f "$HOME/.local/etc/blocky/config.yaml" /usr/local/etc/blocky/config.yaml
2024-05-05 04:05:33 +00:00
if [ -d /usr/lib/systemd/system ]; then
2024-05-28 03:50:11 +00:00
gum log -sl info 'Copying blocky service file to system locations'
2024-05-05 04:05:33 +00:00
sudo cp -f "$HOME/.local/etc/blocky/blocky.service" /usr/lib/systemd/system/blocky.service
else
logg "/usr/lib/systemd/system is missing from the file system"
fi
fi
else
2024-05-28 03:50:11 +00:00
gum log -sl info 'Blocky is not available in the PATH'
2024-05-05 04:05:33 +00:00
fi