This repository contains a set of tools to manage a mac mini server.
The heartbeat.sh
script is responsible for:
- Fetching the latest changes from the
main
branch of the repository - If changes are detected, it pulls the latest changes, rebuilds the project using
asdf install
, and logs the rebuild process - If no changes are detected, it logs that no changes were found
- Runs the
toolbox.rb
script and logs its output toheartbeat.log
The toolbox.rb
script is the main entry point for the toolbox. It loads all the necessary libraries from the lib
directory and performs various server management tasks.
To run heartbeat.sh
automatically, you can use a LaunchAgent plist file and load it with the launchctl
command.
-
Copy the
co.contraption.toolbox.heartbeat.plist
file to the~/Library/LaunchAgents
directory:cp co.contraption.toolbox.heartbeat.plist ~/Library/LaunchAgents/
-
Load the LaunchAgent using the following command:
launchctl load ~/Library/LaunchAgents/co.contraption.toolbox.heartbeat.plist
The heartbeat.sh
script will now run automatically according to the schedule defined in the co.contraption.toolbox.heartbeat.plist
file. It will fetch changes, rebuild if necessary, and run the toolbox.rb
script.
To unload the LaunchAgent and stop the automatic execution of heartbeat.sh
, use the following command:
launchctl unload ~/Library/LaunchAgents/co.contraption.toolbox.heartbeat.plist