#!/usr/bin/env bash # Created by John A. Hoeven with the ethical assistance of Claude AI # --------------------------------------------------------------------------- # 01_comms.sh # ~/projects/ceos/alpine-installer/lib/basic/01_comms.sh # Version: v0.0.1 | Status: DEVELOPMENT # Target: Alpine Linux x86-64 (tinkerpad / ThinkPad T480) # --------------------------------------------------------------------------- # Basic Tier subscript: communication additions — abook, task (taskwarrior). # Defines install_basic_comms(). # --------------------------------------------------------------------------- install_basic_comms() { log_info "--- basic/01_comms: communication additions ---" local -a PKGS=(abook task) for pkg in "${PKGS[@]}"; do install_pkg "${pkg}" done run_test "abook present" 'command -v abook >/dev/null 2>&1' warn run_test "task present" 'command -v task >/dev/null 2>&1' warn } if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" SCRIPT_NAME="basic_01_comms" source "${SCRIPT_DIR}/lib/ce-common.sh" || { echo "ERROR: ce-common.sh not found"; exit 1; } check_not_root install_basic_comms print_summary fi