logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

condor_upgrade_check - HTCondor Manual

Author

       HTCondor Team

Description

condor_upgrade_check is a tool intended to be used by administrators before upgrading an HTCondor install
       to  a new major version. This tool will perform various checks for the current installation against known
       incompatibilities introduced in the Feature series of HTCondor for a given  major  version.  If  a  check
       fails, indicating the current install will have issues with an upgrade, then the tool will do its best to
       suggest a course of action to take.

       condor_upgrade_check  is  intended  to  be ran on a per-host basis for upgrading a system. Since the CHTC
       recommends upgrading between major versions in steps (i.e. V23 ->  V24  ->  V25),  the  available  checks
       change between major versions. New ones will be added and old ones removed.

       Some  checks  ran by condor_upgrade_check are classified as warnings.  These checks output warnings about
       incompatibilites that the tool is not capable of testing and thus give accurrate feedback. Warnings  tend
       to unconditionally output information.

       NOTE:
          Some  checks  ran  by this tool require the tool to be ran as root.  If this tool is executed with out
          root privileges or on a Windows host then any checks that require root will be skipped.

Examples

       Check  hosts  installed  HTCondor for potential issues caused by incompatibilities when upgrading between
       major versions.

          condor_upgrade_check

       Check hosts installed HTCondor-CE for potential issues caused by incompatibilites when upgrading  between
       major versions.

          condor_upgrade_check -ce

       List all available check TAGS

          condor_upgrade_check --tags

       List information about all available checks

          condor_upgrade_check --dump

       Run checks while ignoring specific checks for a host installed HTCondor

          condor_upgrade_check --ignore BAR BAZ

       Run only checks classified as warnings for a host installed HTCondor

          condor_upgrade_check --only warnings

Exit Status

       Returns 0 when tool is finished running.  Returns 1 for fatal internal errors.

Name

       condor_upgrade_check - HTCondor Manual

       Check  a  current  install of HTCondor for incompatibilites that may cause issues when upgrading to a new
       major version.

Options

-h/--help
                 Display condor_upgrade_checks usage to the terminal

          --CE   Run available checks for installed HTCondor-CE on host

          -a/--all
                 Run all available checks ignoring the version check to run

          -i/--ignoreTAG[TAG...]
                 Ignore checks with a matching TAG. Takes precendence over -only-o/--onlyTAG[TAG...]
                 Only run checks with a matching TAG. If given the TAGWARNINGS then only checks  classified  as
                 warnings will be ran.

          -w/--warnings/--no-warnings
                 Enable/disable output of checks classified as warnings. Default is enabled.

          -t/--tags
                 Display all available check TAGS to be used by --only and --ignore-d/--dump
                 Display information about all available checks.

          -v/--verbose
                 Increase tool verbosity

Synopsis

condor_upgrade_check [--help]

       condor_upgrade_check [--CE] [--all] [--ignoreTAG{TAG...}] [--onlyTAG{TAG...}]  [--tags]  [--warnings]
       [--no-warnings] [--dump] [--verbose]

See Also