atheme/tasks/main.yaml
changeset 117 3f0ce0a54663
parent 116 837cf4c1b717
child 118 56bffa9ef826
equal deleted inserted replaced
116:837cf4c1b717 117:3f0ce0a54663
     1 ---
       
     2 
       
     3 - name: apt install atheme
       
     4   become: yes
       
     5   apt: name="atheme-services"
       
     6   notify: restart atheme
       
     7 
       
     8 - name: configure atheme
       
     9   become: yes
       
    10   template:
       
    11     src: "atheme.conf.j2"
       
    12     dest: "/etc/atheme/atheme.conf"
       
    13   notify: restart atheme
       
    14 
       
    15 - name: start atheme service
       
    16   become: yes
       
    17   systemd: name="atheme-services.service" state="started" enabled="yes" daemon_reload="yes"