We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sample playbook:
--- - hosts: all become: yes tasks: - name: Install required dependencies apt: name: - openjdk-11-jre state: present update_cache: yes - name: Download Burp Suite Community Edition get_url: url: https://portswigger.net/burp/releases/download?product=community&type=linux dest: /tmp/burpsuite_community_linux.sh mode: 0755 - name: Install Burp Suite Community Edition command: /tmp/burpsuite_community_linux.sh --prefix=/opt/burpsuite - name: Create symbolic link for Burp Suite file: src: /opt/burpsuite/burpsuite_community.sh dest: /usr/local/bin/burpsuite state: link - name: Create Burp Suite desktop entry copy: content: | [Desktop Entry] Name=Burp Suite Community Edition Exec=/opt/burpsuite/burpsuite_community.sh Terminal=false Type=Application Categories=Development; dest: /usr/share/applications/burpsuite.desktop mode: 0644
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sample playbook:
The text was updated successfully, but these errors were encountered: