Skip to content
Snippets Groups Projects
Select Git revision
  • 12867b6d212fb92feb43e5a8f87968edfd9c1ec7
  • master default protected
  • simple-task/7248-eol-check-add-node-22
  • 6877_check_iml_deployment
4 results

inc_haproxy_cfg.sh

Blame
  • rollout_default.php 991 B
    <?php
    /**
     * 
     * Rollout plugin - default
     * 
     * no action
     *
     * @author <axel.hahn@iml.unibe.ch>
     */
    class rollout_default extends rollout_base {
    
        /**
         * check requirements if the plugin could work
         */
        public function checkRequirements(){
            // no specific checks needed ... always true
            return true;
        }
    
        /**
         * check access to a deploy target
         */
        public function checkConnectionToTarget(){
            // do nothing ... always true
            return true;
        }
    
        /**
         * override general form renderer: show a single message that no
         * configuration items exist
         * 
         * @return string
         */
        public function renderFormdata4Project() {
            return $this->_t('no-cfg');
        }
    
        /**
         * override general form renderer: show a single message that no
         * configuration items exist
         * 
         * @return string
         */
        public function renderFormdata4Phase($sPhase) {
            return $this->_t('no-cfg');
        }    
    }