Skip to content
Snippets Groups Projects
main.yml 313 B
Newer Older
  • Learn to ignore specific revisions
  • - name: Install fetchmail
    
      pacman: name=fetchmail state=present
    
    
    - name: Template fetchmail config
    
      template: src=fetchmailrc.j2 dest=/etc/fetchmailrc owner=fetchmail group=nobody mode=600
      notify:
    
    - name: Start and enable fetchmail
    
      service: name=fetchmail enabled=yes state=started