TACTIC Open Source
Documentation Update: TACTIC Configuration Description - Printable Version

+- TACTIC Open Source (http://forum.southpawtech.com)
+-- Forum: TACTIC Open Source (http://forum.southpawtech.com/forumdisplay.php?fid=3)
+--- Forum: TACTIC Announcements (http://forum.southpawtech.com/forumdisplay.php?fid=5)
+--- Thread: Documentation Update: TACTIC Configuration Description (/showthread.php?tid=44)



Documentation Update: TACTIC Configuration Description - Sophie - 12-05-2019

Hey TACTICians!

We have just updated our documentations. We listed all of the configuration variables used by TACTIC, and wrote a short description on what each variable does, you can check them out here: http://community.southpawtech.com/docs/sys-admin/configure-tactic/

We have also included some examples on how to use them. You can reply below on any improvements or errors you found on this page. We are still in the process of updating this list, and any of your suggestions will be valuable to us.

For people that don't know what configuration variables are, you can read this page: http://community.southpawtech.com/docs/sys-admin/configure-tactic/

For people that don't know how to use these variables, for example, if you want to use the "hostname" variable under "install" section:

  • To set its value in the /opt/tactic/tactic_data/config/tactic-conf.xml
    Code:
    <install>       
      <hostname>localhost</hostname>
    </install>

  • To use its value
    Code:
    from pyasm.common import Config
    hostname = Config.get_value("install", "hostname")
         and it value will be saved in hostname variable.


Regards,
Sophie

Developer at Southpaw Technology


RE: Documentation Update: TACTIC Configuration Description - listy - 12-05-2019

Thank You!
Some of the variables leave a lot of questions, like "portal", "rsync" and many others