### Install Project Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Installs the compiled project onto the system, typically placing executables and configuration files in their respective locations for the Teleport Route Checker. ```bash sudo make install ``` -------------------------------- ### Build Project Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Compiles the project source code, preparing it for installation or testing. ```bash make build ``` -------------------------------- ### Uninstall Project Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Removes the installed project components from the system, including the service and associated files. ```bash sudo make uninstall ``` -------------------------------- ### Start Teleport Route Checker Timer Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Manually starts the systemd timer responsible for periodically checking and managing Teleport routes, activating its automated operation. ```bash sudo systemctl start teleport-route-checker.timer ``` -------------------------------- ### Follow Teleport Route Checker Service Logs Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Displays and continuously follows the real-time logs for the `teleport-route-checker.service`, providing live updates on its operations. ```bash sudo journalctl -u teleport-route-checker.service -f ``` -------------------------------- ### Test Project Dry Run Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Executes the project's test suite in a dry-run mode, allowing verification of functionality without making permanent changes to the system's routing table. ```bash make test ``` -------------------------------- ### View Service Logs Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Displays the logs generated by the `teleport-route-checker` service, useful for debugging and monitoring its route management activities. ```bash make logs ``` -------------------------------- ### Check Teleport Route Checker Timer Status Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Displays the current status of the `teleport-route-checker.timer` systemd unit, showing if it's active, inactive, or has encountered errors. ```bash sudo systemctl status teleport-route-checker.timer ``` -------------------------------- ### Check Service Status Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Checks the current operational status of the `teleport-route-checker` service, indicating if it's running, stopped, or encountering issues. ```bash make status ``` -------------------------------- ### Stop Teleport Route Checker Timer Source: https://github.com/willie5588912/unifi-teleport-router/blob/master/README.md Manually stops the systemd timer that manages Teleport routes, pausing its automated operations. ```bash sudo systemctl stop teleport-route-checker.timer ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.