Skip to content
Snippets Groups Projects
uninstallv1.yml 343 B
Newer Older
  • Learn to ignore specific revisions
  • ---
    # file: roles/serverdensity/tasks/uninstallv1.yml
    
    # Stop agent
    
    - name: Stop v1 Agent
    
      service:
    
        name: sd-agent
        state: stopped
    
    
    # Uninstall agent
    
    - name: Uninstall v1 Agent
    
        pkg: sd-agent
        state: absent
    
    
    # Remove /usr/bin/sd-agent
    
    - name: Remove Plugins Directory
    
        dest: /usr/bin/sd-agent
        state: absent