Zymonic Toolkit Installer: Difference between revisions

From Zymonic
Content added Content deleted
(Examples of setting zymonic and zcps versions to different revisions)
(Added link to the installer toolkit man page from ztsm (via mq2's public link))
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
sudo zymonic_toolkit.pl Installer
sudo zymonic_toolkit.pl Installer
</pre>
</pre>

See the [https://mq2-public.zednax.com/man/ztsm/Toolkit/Installer.html manual page for the installer toolkit] for further details.




Line 162: Line 164:
<li>
<li>


==Other==
==Other update/install flags==
The following are a list of commands that have no information about them at the current time, but are there as options:
<ul>
<ul>
<li>
<li>
pretend: If set to yes causes the installer to behave as normal _except_ that any actions that modify the filesystem will not occur.
pretend
</li>
</li>
<li>
<li>
verbose: If set to yes causes the installer to show full output as well as using a log file (if set).
verbose
</li>
</li>
<li>
<li>
clean: If set to yes causes the installer to reinstall the manifest(s) completely rather than only apply changes.
clean
</li>
</li>
</ul>
</ul>

Latest revision as of 14:47, 11 June 2020

This page contains all of the options for:

sudo zymonic_toolkit.pl Installer

See the manual page for the installer toolkit for further details.


Combine Stylesheets[edit]

Combines the stylesheets for Zymonic Blocks to load dynamically - this is usually automatically done by the installer, this command is primarily for testing the XSL combiner set-up.

sudo zymonic_toolkit.pl Installer combine_stylesheets
  • Configuration Directory[edit]

    A direct to be used for retrieving/storing configuration for this application server - defaults to /etc/zymonic

    sudo zymonic_toolkit.pl Installer combine_stylesheets --confdir FOLDERPATH
    
  • Verbose[edit]

    If set to yes causes the installer to show full output as well as using a log file (if set)

    sudo zymonic_toolkit.pl Installer combine_stylesheets --verbose yes
    


Install[edit]

Installs the parts of Zymonic not installed by the perl Makefile.PL, i.e., Javascript, XSL stylesheets, configuration etc.

sudo zymonic_toolkit.pl Installer install
  • Configuration Directory[edit]

    A direct to be used for retrieving/storing configuration for this application server - defaults to /etc/zymonic

    sudo zymonic_toolkit.pl Installer install --confdir FOLDERPATH
    
  • Verbose[edit]

    If set to yes causes the installer to show full output as well as using a log file (if set)

    sudo zymonic_toolkit.pl Installer install --verbose yes
    
  • Apache Configuration File[edit]

    The base apache configuration file.

    sudo zymonic_toolkit.pl Installer install --apacheconf FILEPATH
    
  • Pretend[edit]

    If set to yes causes the installer to behave as normal _except_ that any actions that modify the filesystem will not occur.

    sudo zymonic_toolkit.pl Installer install --pretend yes
    
  • Manifests[edit]

    Must be a list of manifests (comma separated) to install / update

    sudo zymonic_toolkit.pl Installer install --manifests LIST1,LIST2,LIST3
    

List Manifests[edit]

Lists the currently installed manifests - handy for replicating machine set-up.

sudo zymonic_toolkit.pl Installer list_manifests
  • Configuration Directory[edit]

    A direct to be used for retrieving/storing configuration for this application server - defaults to /etc/zymonic

    sudo zymonic_toolkit.pl Installer list_manifests --confdir FOLDERPATH
    

Update[edit]

Updates the repositories associated with the selected manifests.

sudo zymonic_toolkit.pl Installer update
  • Configuration Directory[edit]

    A direct to be used for retrieving/storing configuration for this application server - defaults to /etc/zymonic

    sudo zymonic_toolkit.pl Installer update --confdir FOLDERPATH
    
  • Manifests[edit]

    Must be a list of manifests (comma separated) to install / update

    sudo zymonic_toolkit.pl Installer update --manifests LIST1,LIST2,LIST3
    
  • Revision[edit]

    The revision to install - can only be used if one manifest is entered - otherwise everything is updated to latest

    sudo zymonic_toolkit.pl Installer update --revision REVISION
    


Update and Install[edit]

Updates the repositories associated with the selected manifests.

sudo zymonic_toolkit.pl Installer update_install
  • Configuration Directory[edit]

    A direct to be used for retrieving/storing configuration for this application server - defaults to /etc/zymonic

    sudo zymonic_toolkit.pl Installer update_install --confdir FOLDERPATH
    
  • Manifests[edit]

    Must be a list of manifests (comma separated) to install / update

    sudo zymonic_toolkit.pl Installer update_install --manifests LIST1,LIST2,LIST3
    
  • Revision[edit]

    The revision to install - can only be used if one manifest is entered - otherwise everything is updated to latest.

    sudo zymonic_toolkit.pl Installer update_install --revision REVISION
    
  • e.g. to update core zymonic:
    sudo zymonic_toolkit.pl Installer update_install --manifests core --revision [zymonic revision]

    to update zcps modules:

    sudo zymonic_toolkit.pl Installer update_install --manifests [any zcps manifest, e.g ztsm] --revision [zcps revision]
  • Other update/install flags[edit]

    • pretend: If set to yes causes the installer to behave as normal _except_ that any actions that modify the filesystem will not occur.
    • verbose: If set to yes causes the installer to show full output as well as using a log file (if set).
    • clean: If set to yes causes the installer to reinstall the manifest(s) completely rather than only apply changes.

Help[edit]

When using a terminal to run zymonic_toolkit.pl the user will see prompts that contain the same information that is found within this manual.

sudo zymonic_toolkit.pl Installer help
  • Command[edit]

    The specific command to show help for. If not set then shows help for all commands.

    sudo zymonic_toolkit.pl Installer help --command COMMAND