This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | global | |
| maxconn 16384 | |
| log 127.0.0.1 len 8192 local0 | |
| log-send-hostname | |
| chroot /var/lib/haproxy | |
| stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners | |
| stats timeout 30s | |
| user haproxy | |
| group haproxy | |
| daemon | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | image: jaels/dapsible:latest | |
| variables: | |
| SPRING_PROFILES_ACTIVE: gitlab-ci | |
| stages: | |
| - build | |
| - package | |
| - deploy | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | --- | |
| - name: Detect /etc/sudoers | |
| stat: | |
| path: /etc/sudoers | |
| register: etc_sudoers | |
| # http://toroid.org/ansible-ssh-pipelining | |
| - name: Disable requiretty option | |
| when: etc_sudoers.stat.exists | |
| lineinfile: |