# Tango Tools This repository stores some useful tools to manage your Tango installation. ## Command line tools for Astor, Atk and Jive These are command line tools for Astor, Atk and Jive. To compile and install a tool, just enter the directory and run make sudo make install ## Tango Service Scripts The directory `tango_demons` stores the scripts `tango_databaseds` and `tango-starter` and the corresponding service files to you may want to use to run Tango at boot. Enter the `tango_demons` directory, copy the scripts in `/etc/init.d` and chmod them cp tango-databaseds /etc/init.d/ cp tango-starter /etc/init.d/ chmod +x /etc/init.d/tango-databaseds chmod +x /etc/init.d/tango-starter Copy the service files in the systemd and enable them cp tango-databaseds.service /etc/systemd/system/ cp tango-starter.service /etc/systemd/system/ systemctl enable tango-databaseds systemctl start tango-databaseds systemctl enable tango-starter systemctl start tango-starter