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

check_haproxy_status

Blame
  • build.interface.php 434 B
    <?php
    /**
     * INTERFACE for rollout plugins
     * 
     * @author hahn
     */
    interface iBuildplugin
    {
    
        /**
         * Get an array of commands to check requirements 
         * if the plugin is able to work
         * @return array
         */
        public function checkRequirements(): array;
    
        /**
         * Get an array with shell commands to execute
         * @return array
         */
        public function getBuildCommands(): array;
    
    }