unit_type
string
repo_path
string
commit_id
string
stars
int32
unit_prefix
string
shard
int32
license_types
list
files
list
quality
dict
flags
dict
ansible_role
bear-kneesdgreat2001/Pena_ElasticStack
1a64dceae4caaba93128f2d3af74bfbf500f008f
0
elastic_stack/roles/ubuntu_server2
7,814
[ "no_license" ]
[ { "path": "elastic_stack/roles/ubuntu_server2/tasks/main.yml", "content": "- name: Install Kibana on Ubuntu\n apt:\n name: kibana\n state: present\n become: true\n\n- name: Enable and start Kibana service\n systemd:\n name: kibana\n enabled: yes\n state: started\n become: true\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 211, "all_permissive": false }
ansible_role
manidevps/Assessment-Tasks
fbf897e139546ed24a12b922fccd03c15cfda016
0
aws-project-mani/roles/apache
7,808
[ "no_license" ]
[ { "path": "aws-project-mani/roles/apache/tasks/main.yml", "content": "---\r\n- name: Connect to the remote host, execute yum updates\r\n yum: name=* state=latest\r\n- name: Install the HTTPD Server\r\n yum: name=httpd state=latest\r\n- name: Install the mod_ssl\r\n yum: name=mod_ssl state=latest\r\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1668, "all_permissive": false }
ansible_role
manidevps/Assessment-Tasks
fbf897e139546ed24a12b922fccd03c15cfda016
0
aws-project-mani/roles/aws-ec2
7,808
[ "no_license" ]
[ { "path": "aws-project-mani/roles/aws-ec2/tasks/main.yml", "content": "---\r\n- name: Provisioning t2.micro EC2 Redhat instance\r\n ec2: \r\n aws_access_key: \"{{ aws_id }}\"\r\n aws_secret_key: \"{{ aws_key }}\"\r\n region: \"{{ aws_region }}\"\r\n image: \"{{ aws_ec2_image }}\"\r\n instanc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 561, "all_permissive": false }
ansible_role
manidevps/Assessment-Tasks
fbf897e139546ed24a12b922fccd03c15cfda016
0
aws-project-mani/roles/aws-key-pair
7,808
[ "no_license" ]
[ { "path": "aws-project-mani/roles/aws-key-pair/tasks/main.yml", "content": "---\r\n- name: Generating ec2 key\r\n ec2_key:\r\n aws_access_key: \"{{ aws_id }}\"\r\n aws_secret_key: \"{{ aws_key }}\"\r\n region: \"{{ aws_region }}\"\r\n name: \"{{ aws_ec2_key }}\"\r\n key_material: \"{{ item }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 251, "all_permissive": false }
ansible_role
manidevps/Assessment-Tasks
fbf897e139546ed24a12b922fccd03c15cfda016
0
aws-project-mani/roles/aws-util
7,808
[ "no_license" ]
[ { "path": "aws-project-mani/roles/aws-util/tasks/main.yml", "content": "---\r\n- name: Webserver Security Group Creation\r\n ec2_group:\r\n aws_access_key: \"{{ aws_id }}\"\r\n aws_secret_key: \"{{ aws_key }}\"\r\n region: \"{{ aws_region }}\"\r\n name: \"{{ aws_sec_group_name }}\"\r\n descr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 906, "all_permissive": false }
ansible_role
algzzar/algzzar
bd7ced845a7ada0def70e0f6413cd38ff2280bce
0
lab2/roles/mysql
7,808
[ "no_license" ]
[ { "path": "lab2/roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n\n - name : Set MySQL root password before installing\n debconf: name='mysql-server' question='mysql-server/root_password' value='{{MySQL_root_pass | quote}}' vtype='password'\n\n\n - name: Confirm MySQL root pa...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1005, "all_permissive": false }
ansible_role
algzzar/algzzar
bd7ced845a7ada0def70e0f6413cd38ff2280bce
0
lab2/roles/nginx
7,808
[ "no_license" ]
[ { "path": "lab2/roles/nginx/defaults/main.yml", "content": "---\n# defaults file for nginx\nphp_ip_address : 127.0.0.1:9000\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "lab2/roles/nginx/tasks/main.yml", "content": "---\n# tasks file for ng...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 402, "all_permissive": false }
ansible_role
algzzar/algzzar
bd7ced845a7ada0def70e0f6413cd38ff2280bce
0
lab2/roles/php
7,808
[ "no_license" ]
[ { "path": "lab2/roles/php/tasks/main.yml", "content": "---\n# tasks file for php\n- name : install required Package\n apt : name={{ item }} force=yes state=present\n with_items :\n - php5-fpm\n - php5-gd\n - php5-curl\n - php5-mysql\n - php5\n - python-mysqldb\n-...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 521, "all_permissive": false }
ansible_role
algzzar/algzzar
bd7ced845a7ada0def70e0f6413cd38ff2280bce
0
lab2/roles/wordpress
7,808
[ "no_license" ]
[ { "path": "lab2/roles/wordpress/defaults/main.yml", "content": "---\n# defaults file for wordpress\nwp_mysql_db : wordpress\nwp_mysql_user : wordpress\nwp_mysql_password : <PASSWORD>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 115 }, { "path": "lab2/roles/wor...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 482, "all_permissive": false }
ansible_role
SupriyaGoleTW/ansible-test
a00f4bf8ed41fc8457f3d433407af22827f69e59
0
box-1/roles/go-agent
7,808
[ "no_license" ]
[ { "path": "box-1/roles/go-agent/tasks/main.yml", "content": "- name: Install go-agent\n become: yes\n yum:\n name: go-agent-17.1.0\n\n- name: Start go agent\n become: yes\n service:\n name: go-agent\n state: started", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 191, "all_permissive": false }
ansible_role
SupriyaGoleTW/ansible-test
a00f4bf8ed41fc8457f3d433407af22827f69e59
0
box-1/roles/go-server
7,808
[ "no_license" ]
[ { "path": "box-1/roles/go-server/tasks/main.yml", "content": "- name: Install go-server\n become: yes\n yum:\n name: go-server-{{go_server_version}}\n\n- name: Start go server on default port\n become: yes\n service:\n name: go-server\n state: started", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
SupriyaGoleTW/ansible-test
a00f4bf8ed41fc8457f3d433407af22827f69e59
0
roles/go-agent
7,808
[ "no_license" ]
[ { "path": "roles/go-agent/tasks/main.yml", "content": "- name: Install go-agent\n become: yes\n yum:\n name: go-agent-{{go_agent_version}}\n\n- name: Start go agent\n become: yes\n service:\n name: go-agent\n state: started", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 172, "all_permissive": false }
ansible_role
SupriyaGoleTW/ansible-test
a00f4bf8ed41fc8457f3d433407af22827f69e59
0
roles/go-repo
7,808
[ "no_license" ]
[ { "path": "roles/go-repo/tasks/main.yml", "content": "- name: downloading go-server using yum repo\n become: yes\n yum_repository:\n name: gocd agent\n description: go repo\n baseurl: https://download.gocd.io\n enabled: 1\n gpgcheck: 1\n gpgkey: https://download.gocd.io/GOCD-GPG-KEY.asc"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 245, "all_permissive": false }
ansible_role
SupriyaGoleTW/ansible-test
a00f4bf8ed41fc8457f3d433407af22827f69e59
0
roles/jdk
7,808
[ "no_license" ]
[ { "path": "roles/jdk/tasks/main.yml", "content": "- name: Downloading jdk\n become: yes\n get_url:\n url: http://download.oracle.com/otn-pub/java/jdk/8u102-b14/jdk-8u102-linux-x64.rpm\n dest: /opt/jdk-8u102-linux-x64.rpm\n headers: \"Cookie: oraclelicense=accept-securebackup-cookie\"\n\n- name: I...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 325, "all_permissive": false }
ansible_role
arssher/lad
c884ffad7790899018aaa4827085cc7b34199c22
0
roles/build
7,808
[ "no_license" ]
[ { "path": "roles/build/tasks/main.yml", "content": "---\n\n- name: install python-apt\n apt: name=python-apt state=present\n- name: get curl\n apt: name=curl state=present\n- name: download and install pip\n shell: curl https://bootstrap.pypa.io/get-pip.py | sudo python\n- name: install docker-py\n pip:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 410, "all_permissive": false }
ansible_role
arssher/lad
c884ffad7790899018aaa4827085cc7b34199c22
0
roles/infinispan-server
7,808
[ "no_license" ]
[ { "path": "roles/infinispan-server/tasks/main.yml", "content": "---\n\n- name: install unzip\n apt: name=unzip\n- shell: wget -P /root/ http://downloads.jboss.org/infinispan/6.0.2.Final/infinispan-server-6.0.2.Final-bin.zip\n- unarchive: src=/root/infinispan-server-6.0.2.Final-bin.zip dest=/root/ copy=no\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 520, "all_permissive": false }
ansible_role
arssher/lad
c884ffad7790899018aaa4827085cc7b34199c22
0
roles/kill
7,808
[ "no_license" ]
[ { "path": "roles/kill/tasks/main.yml", "content": "---\n\n- name: shutdown docker\n docker: state=absent name={{ container_name }} image=ubuntu/sshjdk:14.04\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 105, "all_permissive": false }
ansible_role
arssher/lad
c884ffad7790899018aaa4827085cc7b34199c22
0
roles/run
7,808
[ "no_license" ]
[ { "path": "roles/run/tasks/main.yml", "content": "---\n\n- name: Get facts about launched docker containers\n docker_facts:\n- name: check running containers\n fail: msg=\"container {{ item }} already running. Stop it first!\"\n when: docker_containers.{{ item }} is defined and docker_containers.{{ item ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1211, "all_permissive": false }
ansible_role
arssher/lad
c884ffad7790899018aaa4827085cc7b34199c22
0
roles/stop
7,808
[ "no_license" ]
[ { "path": "roles/stop/tasks/main.yml", "content": "---\n\n- name: shutdown docker\n docker: state=stopped name={{ container_name }} image=ubuntu/sshjdk:14.04\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 106, "all_permissive": false }
ansible_role
Otus-DevOps-2018-09/mikelog_infra
95967eba4c9318628fb404c26ae40e0fbdd3f9ee
0
ansible/roles/app
7,808
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/ruby.yml", "content": "---\n- name: Install ruby and rubygems and required packages\n apt:\n name: ['ruby-full', 'ruby-bundler', 'build-essential']\n tags: ruby\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 }, { "path...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 313, "all_permissive": false }
ansible_role
6-SPOT/spot-infra-prod
fc5c87b5a0752965fb19c680b002689c8e3e6b64
0
Ansible/roles/cloudwatch
7,808
[ "no_license" ]
[ { "path": "Ansible/roles/cloudwatch/tasks/main.yml", "content": "# - name: Check if Docker is installed\n# command: which docker\n# register: docker_check\n# ignore_errors: yes\n# changed_when: false\n\n# - name: Download CloudWatch Agent installer\n# get_url:\n# url: https://s3.amazonaws.com/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3613, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/fail2ban
7,808
[ "no_license" ]
[ { "path": "roles/fail2ban/tasks/main.yml", "content": "---\n- name: Install or update fail2ban\n apt:\n name: fail2ban\n install_recommends: yes\n state: latest\n\n- name: Setup fail2ban\n command: cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local\n", "license_type": "no_license", "dete...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 198, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/prometheus
7,808
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n- name: Install or update Prometheus and support packages\n apt:\n name:\n - prometheus\n - prometheus-node-exporter\n install_recommends: yes\n state: latest\n\n- name: Setup Prometheus\n copy:\n src: prometheus.yml\n dest...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1342, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/restart
7,808
[ "no_license" ]
[ { "path": "roles/restart/tasks/main.yml", "content": "---\n- name: Restart host\n command: shutdown -r +2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 51, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/setup
7,808
[ "no_license" ]
[ { "path": "roles/setup/tasks/main.yml", "content": "---\n- name: Update package list\n command: apt update\n\n- name: Install necessary packages\n command: >\n apt install -y\n aptitude\n git\n mosh\n openssh-server\n python3\n python3-apt\n python3-pexpect\n python3-pip\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 785, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/shutdown
7,808
[ "no_license" ]
[ { "path": "roles/shutdown/tasks/main.yml", "content": "---\n- name: Shutdown host\n command: shutdown -h +2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 52 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 52, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/ufw
7,808
[ "no_license" ]
[ { "path": "roles/ufw/tasks/main.yml", "content": "---\n- name: Install or update UFW\n apt:\n name: ufw\n install_recommends: yes\n state: latest\n\n- name: Enable UFW\n ufw:\n state: enabled\n\n- name: Allow rate-limited SSH\n ufw:\n rule: limit\n port: ssh\n proto: tcp\n\n- name: A...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 367, "all_permissive": false }
ansible_role
mygulamali/pi-zero
845d7c85bf336be58dcb7e0c2d22cca26517ffb4
1
roles/update
7,808
[ "no_license" ]
[ { "path": "roles/update/tasks/main.yml", "content": "---\n\n- name: Update package index\n apt:\n update_cache: yes\n\n- name: Upgrade packages\n apt:\n upgrade: dist\n\n- name: Remove unrequired dependencies\n apt:\n autoremove: yes\n\n- name: Remove unrequired packages from cache\n apt:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 254, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/azure
7,808
[ "no_license" ]
[ { "path": "envs/roles/azure/defaults/main.yml", "content": "---\nazure_package_name: azure-cli\n\nrepo_key_url: https://packages.microsoft.com/keys/microsoft.asc\n\napt_key_server: packages.microsoft.com\napt_key_id: 52E16F86FEE04B979B07E28DB02C46DF417A0893\n", "license_type": "no_license", "detecte...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1139, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/base
7,808
[ "no_license" ]
[ { "path": "envs/roles/base/tasks/main.yml", "content": "- name: Install base packages\n apt: pkg=curl,tree,zsh,htop,git,aptitude,unzip state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 93, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/code
7,808
[ "no_license" ]
[ { "path": "envs/roles/code/tasks/main.yml", "content": "---\n- name: Add VS Code GPG key\n ansible.builtin.get_url:\n url: https://packages.microsoft.com/keys/microsoft.asc\n dest: /etc/apt/trusted.gpg.d/microsoft.asc\n \n\n- name: Add VS Code APT repository\n apt_repository:\n repo: deb [signed...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 395, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/docker
7,808
[ "no_license" ]
[ { "path": "envs/roles/docker/tasks/main.yml", "content": "---\n- name: Add Docker GPG key\n ansible.builtin.get_url:\n url: https://download.docker.com/linux/ubuntu/gpg\n dest: /etc/apt/trusted.gpg.d/docker.asc\n\n- name: Add Docker APT repository\n ansible.builtin.apt_repository:\n filename: doc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 652, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/dotnetdev
7,808
[ "no_license" ]
[ { "path": "envs/roles/dotnetdev/tasks/main.yml", "content": "---\n\n- name: Install DotNet SDK\n when: ansible_distribution_release == \"jammy\"\n block:\n # Dotnet7 available in regular ubuntu feed\n # https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-2204\n - name: Download SDK...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 986, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/idea
7,808
[ "no_license" ]
[ { "path": "envs/roles/idea/tasks/main.yml", "content": "---\n- name: Download IDEA archiv\n get_url:\n url: https://download.jetbrains.com/idea/ideaIC-2022.3.2.tar.gz\n dest: /tmp/idea.tar.gz\n\n- name: Create dir\n file:\n path: \"{{idea_dir}}\"\n state: directory\n register: idea_directory\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1054, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/javadev
7,808
[ "no_license" ]
[ { "path": "envs/roles/javadev/tasks/main.yml", "content": "---\n- name: Install Java SDK Headless\n apt: pkg=openjdk-8-jdk,openjfx,maven state=latest\n register: jdkheadless\n\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 117, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/lazygit
7,808
[ "no_license" ]
[ { "path": "envs/roles/lazygit/tasks/main.yml", "content": "---\n- name: Install Lazygit\n shell: |\n LAZYGIT_URL=$(curl -sL https://github.com/jesseduffield/lazygit/releases/latest -w \"%{url_effective}\\n\" -o /dev/null )\n LAZYGIT_VERSION=$(basename $LAZYGIT_URL)\n LAZYGIT_VERSION=\"${LAZYGIT_VERS...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 536, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/lxd_container
7,808
[ "no_license" ]
[ { "path": "envs/roles/lxd_container/meta/main.yml", "content": "---\ndependencies:\n - role: lxd_profiles\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "envs/roles/lxd_container/defaults/main.yml", "content": "---\n\ninstance_type: containe...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 958, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/lxd_profiles
7,808
[ "no_license" ]
[ { "path": "envs/roles/lxd_profiles/tasks/main.yml", "content": "---\n\n# Profile initiate box with ssh\n- name: Dev Profile\n lxd_profile:\n name: dev\n state: present\n config: {\n \"user.vendor-data\": \"#cloud-config\\nssh_authorized_keys:\\n - {{ lookup('file', '~/.ssh/id_rsa.pub') }}\\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2130, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/nodedev
7,808
[ "no_license" ]
[ { "path": "envs/roles/nodedev/tasks/main.yml", "content": "---\n\n- name: add apt key for nodesource\n ansible.builtin.get_url:\n url: https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key\n dest: /etc/apt/trusted.gpg.d/nodesource.asc\n mode: 0644\n register: node_signing_key\n\n- name: Add N...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 742, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/nvim
7,808
[ "no_license" ]
[ { "path": "envs/roles/nvim/defaults/main.yml", "content": "---\n\nconfig_from_host: true\nuse_csharp: false\n\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 }, { "path": "envs/roles/nvim/tasks/main.yml", "content": "---\n\n- name: Installing depeneden...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2013, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/ohmyzsh
7,808
[ "no_license" ]
[ { "path": "envs/roles/ohmyzsh/tasks/main.yml", "content": "---\n- name: Installing zsh and git\n apt: pkg=zsh,git state=latest\n register: installation\n\n- name: Backing up existing ~/.zshrc\n shell: \"if [ -f ~/.zshrc ]; then mv ~/.zshrc ~/.zshrc.org; fi\"\n when: installation is success\n become: no...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1124, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/poetry
7,808
[ "no_license" ]
[ { "path": "envs/roles/poetry/tasks/main.yml", "content": "---\n- name: Install Poetry\n shell: \"curl -sSL https://install.python-poetry.org | python3 -\"\n register: poetry\n become: no\n\n\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/pycharm
7,808
[ "no_license" ]
[ { "path": "envs/roles/pycharm/defaults/main.yml", "content": "---\n\n#default for idea\nidea_dir: /home/ubuntu/.local/bin/pycharm-ce\nidea_user: ubuntu\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 }, { "path": "envs/roles/pycharm/tasks/main.yml", "conte...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1076, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/rider
7,808
[ "no_license" ]
[ { "path": "envs/roles/rider/tasks/main.yml", "content": "---\n- name: Install rider via SNAP\n command: sudo snap install rider --classic\n \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 86 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 86, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/terraform
7,808
[ "no_license" ]
[ { "path": "envs/roles/terraform/defaults/main.yml", "content": "---\n\n#default for terraform\nterraform_version: 0.11.13\nterraform_dir: /opt/terraform\nterraform_user: root\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "envs/roles/terraform/t...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 544, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/vim
7,808
[ "no_license" ]
[ { "path": "envs/roles/vim/tasks/main.yml", "content": "---\n- name: Installing vim\n apt: pkg=vim,curl,git state=latest\n register: viminst\n\n- name: Create vim config\n copy:\n src=~/.vimrc\n dest=~/.vimrc\n when: viminst is success\n become: no\n\n\n", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 196, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/workstation
7,808
[ "no_license" ]
[ { "path": "envs/roles/workstation/tasks/main.yml", "content": "---\n- name: Installing basics\n apt: pkg=curl,tree,htop,ncdu,zsh state=latest\n\n- name: Install DE (common)\n apt: pkg=i3,lightdm,xautolock,pasystray,scrot,gimp,sxiv,sakura,imagemagick,pavucontrol,tango-icon-theme,ttf-mscorefonts-installer,f...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 937, "all_permissive": false }
ansible_role
mluatgmxdotch/linux-configs
1171be96993be799bb4c2940d1cdcaba57391fa9
0
envs/roles/x11forward
7,808
[ "no_license" ]
[ { "path": "envs/roles/x11forward/tasks/main.yml", "content": "---\n- name: Enabling xforwarding\n apt: pkg=xbase-clients state=latest\n register: xforwardinst\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 97, "all_permissive": false }
ansible_role
sousatg-old/php-box
394fb0d7526c324908cf7d3ac1e8921f792b1cc0
0
ansible/roles/common
7,808
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "- name: Install required packages\n apt:\n name:\n - make\n - vim\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n state: present\n update_cache: yes\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 217, "all_permissive": false }
ansible_role
sousatg-old/php-box
394fb0d7526c324908cf7d3ac1e8921f792b1cc0
0
ansible/roles/nginx
7,808
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "- name: Install NGinx\n apt:\n name: \n - nginx\n state: present\n update_cache: yes\n\n- name: Start service nginx, if not started\n service:\n name: nginx\n state: started\n\n- name: Create server block\n file: \n path: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 696, "all_permissive": false }
ansible_role
sousatg-old/php-box
394fb0d7526c324908cf7d3ac1e8921f792b1cc0
0
ansible/roles/php
7,808
[ "no_license" ]
[ { "path": "ansible/roles/php/tasks/main.yml", "content": "- name: Install PHP Packages\n apt:\n name: \n - php-cli\n - php-fpm\n - php-curl\n - php-gd\n - php-mbstring \n - php-xml \n - php-xmlrpc \n - php-soap \n - php-intl \n - php-zip\n state: pres...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 263, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab2/roles/docker
7,808
[ "no_license" ]
[ { "path": "lab2/roles/docker/meta/main.yml", "content": "---\r\ngalaxy_info:\r\n author: DeusOps\r\n description: Role for installing Docker on Ubuntu\r\n company: DeusOps\r\n\r\n license: MIT\r\n\r\n min_ansible_version: 2.9\r\n\r\n platforms:\r\n - name: Ubuntu\r\n versions:\r\n - foc...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2732, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab3/roles/nginx
7,808
[ "no_license" ]
[ { "path": "lab3/roles/nginx/templates/vhost.conf.j2", "content": "server {\r\n listen {{ item.listen | default('80') }};\r\n server_name {{ item.server_name }};\r\n\r\n{% if item.return is defined %}\r\n return {{ item.return }};\r\n{% else %}\r\n access_log {{ item.access_log | default('/var/lo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2712, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab4/roles/openvpn
7,808
[ "no_license" ]
[ { "path": "lab4/roles/openvpn/defaults/main.yml", "content": "---\r\n# Основные настройки OpenVPN\r\nopenvpn_port: 1194\r\nopenvpn_proto: udp\r\nopenvpn_dev: tun\r\nopenvpn_network: \"10.8.0.0\"\r\nopenvpn_netmask: \"255.255.255.0\"\r\nopenvpn_server_hostname: \"{{ ansible_default_ipv4.address }}\"\r\n\r\n#...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 14976, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab5/roles/postgresql
7,808
[ "no_license" ]
[ { "path": "lab5/roles/postgresql/meta/main.yml", "content": "---\r\ngalaxy_info:\r\n author: DeusOps\r\n description: Роль для установки и настройки PostgreSQL с поддержкой репликации\r\n company: DeusOps\r\n\r\n license: MIT\r\n\r\n min_ansible_version: 2.9\r\n\r\n platforms:\r\n - name: Ubuntu\r\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 7058, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab6/roles/docker
7,808
[ "no_license" ]
[ { "path": "lab6/roles/docker/molecule/default/converge.yml", "content": "---\r\n- name: Converge\r\n hosts: all\r\n become: true\r\n vars:\r\n docker_users:\r\n - ansible\r\n tasks:\r\n - name: \"Include docker role\"\r\n include_role:\r\n name: \"docker\" ", "license_type": "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2507, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab6/roles/grafana
7,808
[ "no_license" ]
[ { "path": "lab6/roles/grafana/templates/datasources.yml.j2", "content": "apiVersion: 1\r\n\r\ndatasources:\r\n{% for datasource in grafana_datasources %}\r\n - name: {{ datasource.name }}\r\n type: {{ datasource.type }}\r\n access: {{ datasource.access }}\r\n url: {{ datasource.url }}\r\n isDef...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5408, "all_permissive": false }
ansible_role
Skitterin0/deusops
b59613f980055914368bd9f688bc6642eb68cda7
0
lab6/roles/prometheus
7,808
[ "no_license" ]
[ { "path": "lab6/roles/prometheus/templates/prometheus.service.j2", "content": "[Unit]\r\nDescription=Prometheus - Monitoring system and time series database\r\nDocumentation=https://prometheus.io/docs/introduction/overview/\r\nAfter=network-online.target\r\n\r\n[Service]\r\nUser=prometheus\r\nGroup=promethe...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5857, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/blackbox_exp
7,808
[ "no_license" ]
[ { "path": "roles/blackbox_exp/tasks/main.yml", "content": "---\n- name: downloading node exporter\n get_url:\n url: https://github.com/prometheus/blackbox_exporter/releases/download/v0.19.0/blackbox_exporter-0.19.0.linux-amd64.tar.gz\n dest: /root/blackbox_exporter.tar.gz\n\n- name: unzipping archive...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1125, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/grafana
7,808
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "---\n- name: grafana .deb downloading\n get_url:\n url: https://dl.grafana.com/enterprise/release/grafana-enterprise_8.2.5_amd64.deb\n dest: /root/grafana.deb\n\n- name: grafana installation\n apt:\n deb: /root/grafana.deb\n\n- name: enable se...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 386, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/mysql
7,808
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: mysql server default installation\n package: \n name: mysql-server-8.0\n state: present\n\n- name: adding to autoreboot\n systemd:\n name: mysql\n enabled: yes\n\n- name: python installing for ansible community module\n package:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1092, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/node_exporter
7,808
[ "no_license" ]
[ { "path": "roles/node_exporter/tasks/main.yml", "content": "---\n- name: downloading node exporter\n get_url:\n url: https://github.com/prometheus/node_exporter/releases/download/v1.3.0/node_exporter-1.3.0.linux-amd64.tar.gz\n dest: /root/node_exporter.tar.gz\n\n- name: unzipping archive\n unarchive...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 944, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/prometheus
7,808
[ "no_license" ]
[ { "path": "roles/prometheus/tasks/main.yml", "content": "---\n\n- name: downloading prometheus binaries\n get_url:\n url: https://github.com/prometheus/prometheus/releases/download/v2.32.0-beta.0/prometheus-2.32.0-beta.0.linux-amd64.tar.gz\n dest: /root/prometheus.tar.gz\n\n- name: unzipping archive\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3560, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/web-apache
7,808
[ "no_license" ]
[ { "path": "roles/web-apache/tasks/main.yml", "content": "---\n- name: add timezone symlink\n file:\n src: /usr/share/zoneinfo/Europe/Moscow\n dest: /etc/localtime\n state: link\n\n- name: set timezone\n lineinfile:\n path: /etc/timezone\n line: Europe/Moscow\n create: yes\n\n\n- name: ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1015, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/web-docker
7,808
[ "no_license" ]
[ { "path": "roles/web-docker/files/docker-compose.yml", "content": "version: \"3\"\nservices:\n web_server:\n image: toasterlint/php-apache-mysql:8.0-nowarn\n ports:\n - 80:80\n volumes:\n - /var/www/wordpress:/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2944, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/wphost
7,808
[ "no_license" ]
[ { "path": "roles/wphost/tasks/main.yml", "content": "---\n- name: downloading wordpress\n get_url:\n url: https://wordpress.org/latest.tar.gz\n dest: /var/www/wordpress.tar.gz\n\n- name: unzipping archive\n unarchive:\n src: /var/www/wordpress.tar.gz\n dest: /var/www/\n remote_src: yes\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3932, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/z-agent
7,808
[ "no_license" ]
[ { "path": "roles/z-agent/tasks/main.yml", "content": "---\n\n- name: zabbix agent installation\n package:\n name: zabbix-agent\n\n- name: adding agent to autoboot\n systemd:\n name: zabbix-agent\n enabled: yes\n\n- name: copying config file\n copy:\n src: ./roles/z-agent/files/zabbix-agent.co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
0lgaM/ansiblefiles
64e01d077a2cc282d84b94b94ea86c37efc77182
0
roles/zabbix
7,808
[ "no_license" ]
[ { "path": "roles/zabbix/tasks/main.yml", "content": "---\n\n- name: add timezone symlink\n file:\n src: /usr/share/zoneinfo/Europe/Moscow\n dest: /etc/localtime\n state: link\n\n- name: set timezone\n lineinfile:\n path: /etc/timezone\n line: Europe/Moscow\n create: yes\n\n\n- name: apac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2416, "all_permissive": false }
ansible_role
VictorMCL/Vagrant-Ansible-K8S
7483e8f3294bc9969e9eff51c895cbd9d2e21207
0
K8S/roles/master
7,808
[ "no_license" ]
[ { "path": "K8S/roles/master/tasks/main.yaml", "content": "- name: Initialize the Kubernetes cluster using kubeadm\n command: kubeadm init --apiserver-advertise-address=\"{{apiserver_ip}}\" --node-name=\"{{node_name}}\" --pod-network-cidr=\"{{network_pod_ip}}\"\n\n- name: Setup kubeconfig for vagrant user\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 972, "all_permissive": false }
ansible_role
VictorMCL/Vagrant-Ansible-K8S
7483e8f3294bc9969e9eff51c895cbd9d2e21207
0
K8S/roles/systemconfig
7,808
[ "no_license" ]
[ { "path": "K8S/roles/systemconfig/tasks/main.yaml", "content": "---\n- name: Disable SELinux\n selinux:\n state: disabled\n\n- name: Stop & disable firewalld\n systemd:\n name: firewalld\n state: stopped\n enabled: no\n\n- name: Enable ssh password authentication\n lineinfile:\n path: /etc...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2881, "all_permissive": false }
ansible_role
rodrigoeiras/AnsibleWordpressExtra
a2e9ff9be077df351abda80bcaf97bdadcbec26e
1
roles/mysql
7,808
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n\n- name: Cria banco de dados do Wordpress\n mysql_db: name={{ wp_mysql_db }}\n\n- name: Cria o usuario do banco de dados Wordpress\n mysql_user:\n name={{ wp_mysql_user }}\n password={{ <PASSWORD> }}\n priv=*.*:ALL...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 439, "all_permissive": false }
ansible_role
rodrigoeiras/AnsibleWordpressExtra
a2e9ff9be077df351abda80bcaf97bdadcbec26e
1
roles/php
7,808
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n# tasks file for php\n\n- name: Instala extensoes do PHP 7.4\n apt: name={{ item }} state=present\n become: yes\n with_items:\n - php7.4-gd\n - php-ssh2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 159 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 159, "all_permissive": false }
ansible_role
rodrigoeiras/AnsibleWordpressExtra
a2e9ff9be077df351abda80bcaf97bdadcbec26e
1
roles/server
7,808
[ "no_license" ]
[ { "path": "roles/server/tasks/main.yml", "content": "---\n# tasks file for server\n\n- name: Atualiza o cache do APT\n apt: update_cache=yes cache_valid_time=3600\n become: yes\n\n\n- name: Instalar os pacotes do servidor\n apt: name={{ item }} state=present\n become: yes\n with_items:\n - apache2\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 343, "all_permissive": false }
ansible_role
rodrigoeiras/AnsibleWordpressExtra
a2e9ff9be077df351abda80bcaf97bdadcbec26e
1
roles/wordpress
7,808
[ "no_license" ]
[ { "path": "roles/wordpress/handlers/main.yml", "content": "---\n# handlers file for wordpress\n\n- name: restart apache\n become: true\n service: name=apache2 state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 113 }, { "path": "roles/wordpress/task...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1269, "all_permissive": false }
ansible_role
sergey-nesterenko/clickhouse_cluster
5187f9aa6073e5f77e72158d1a434836bd9853a9
0
roles/clickhouse
7,808
[ "no_license" ]
[ { "path": "roles/clickhouse/tasks/main.yml", "content": "---\n# tasks file for clickhouse/roles/clickhouse\n - name: ADD Clickhouse repository key\n rpm_key:\n state: present\n key: https://repo.clickhouse.tech/CLICKHOUSE-KEY.GPG\n\n - name: ADD Clickhouse repository\n yum_repo...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 12856, "all_permissive": false }
ansible_role
sergey-nesterenko/clickhouse_cluster
5187f9aa6073e5f77e72158d1a434836bd9853a9
0
roles/lvm
7,808
[ "no_license" ]
[ { "path": "roles/lvm/defaults/main.yml", "content": "---\n# defaults file for clickhouse/roles/lvm\n data_dir: /data_ch/clickhouse\n data_dev: /dev/sdb\n \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "roles/lvm/handlers/main.yml", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 862, "all_permissive": false }
ansible_role
sergey-nesterenko/clickhouse_cluster
5187f9aa6073e5f77e72158d1a434836bd9853a9
0
roles/zookeeper
7,808
[ "no_license" ]
[ { "path": "roles/zookeeper/templates/env_zookeeper.j2", "content": "\n# TODO this is really ugly\n# How to find out, which jars are needed?\n# seems, that log4j requires the log4j.properties file to be in the classpath\nCLASSPATH=\"$ZOOCFGDIR:/usr/share/java/*.jar:/opt/zookeeper/lib/*.jar\n\n\nZOOCFGDIR=/op...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 7055, "all_permissive": false }
ansible_role
hughsaunders/ansible-lyngate
974f194e6ac311fca3226d6f2a9e8cabef5ba92a
0
roles/monitoring_client
7,808
[ "no_license" ]
[ { "path": "roles/monitoring_client/tasks/main.yml", "content": "---\n# tasks file for monitoring_client\n - apt_key:\n url: 'http://repos.sensuapp.org/apt/pubkey.gpg'\n\n - apt_repository:\n repo: 'deb http://repos.sensuapp.org/apt sensu main'\n\n - apt:\n update_cache: yes\n name: \"{{item}...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1259, "all_permissive": false }
ansible_role
hughsaunders/ansible-lyngate
974f194e6ac311fca3226d6f2a9e8cabef5ba92a
0
roles/monitoring_server
7,808
[ "no_license" ]
[ { "path": "roles/monitoring_server/handlers/main.yml", "content": "---\n# handlers file for monitoring_server\n\n - name: restart sensu\n service:\n name: \"{{item}}\"\n state: restarted\n enabled: yes\n with_items:\n - \"sensu-server\"\n - \"sensu-api\"\n - \"uchiwa\"\n\n \n", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1922, "all_permissive": false }
ansible_role
hughsaunders/ansible-lyngate
974f194e6ac311fca3226d6f2a9e8cabef5ba92a
0
roles/persistent_ssh
7,808
[ "no_license" ]
[ { "path": "roles/persistent_ssh/defaults/main.yml", "content": "---\n# defaults file for persistent_ssh\n\njob_name: persistent_ssh\nssh_options: []\nssh_connection_string: localhost\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 }, { "path": "roles/persiste...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 407, "all_permissive": false }
ansible_role
trippsoft/ansible-collection-vmware
22634fd6cedcd70aa39972e9c80adc71f9429fab
0
roles/deploy_vm
7,808
[ "no_license" ]
[ { "path": "roles/deploy_vm/tasks/deploy.yml", "content": "---\n- name: Check if VMware VM exists\n delegate_to: localhost\n community.vmware.vmware_guest_info:\n hostname: \"{{ vmware_hostname | default(omit) }}\"\n username: \"{{ vmware_username | default(omit) }}\"\n password: \"{{ <PASSWORD> |...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 49062, "all_permissive": false }
ansible_role
amniik/vagrant_openstack
b8855543cee868e63ceef15003906a7994d9ed8c
0
provisioning/roles/network
7,819
[ "no_license" ]
[ { "path": "provisioning/roles/network/templates/environment.j2", "content": "https_proxy={{ https_proxy_protocol }}://{{ https_proxy_ip }}:{{ https_proxy_port }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 }, { "path": "provisioning/roles/network/defaults/...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 3317, "all_permissive": false }
ansible_role
amniik/vagrant_openstack
b8855543cee868e63ceef15003906a7994d9ed8c
0
provisioning/roles/prepare-deployment
7,819
[ "no_license" ]
[ { "path": "provisioning/roles/prepare-deployment/templates/nova.yml.j2", "content": "---\ncompute-infra_hosts:\n{% for node in groups.get('openstack') %}\n {{ node }}:\n ip: {{ hostvars[node]['ansible_br_mgmt']['ipv4']['address'] }}\n{% endfor %}\n\ncompute_hosts:\n{% for node in groups.get('openstack'...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 14365, "all_permissive": false }
ansible_role
DylanLefebvre/SIO21-Ansible
076aaf1bc9e342b08e90f7f1ad35323ec0a374b2
0
roles/fail2ban
7,819
[ "no_license" ]
[ { "path": "roles/fail2ban/tasks/main.yml", "content": "---\n# tasks file for fail2ban\n- name: Installfail2ban\n apt: name=fail2ban state=installed\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 91, "all_permissive": false }
ansible_role
DylanLefebvre/SIO21-Ansible
076aaf1bc9e342b08e90f7f1ad35323ec0a374b2
0
roles/ufw
7,819
[ "no_license" ]
[ { "path": "roles/ufw/handlers/main.yml", "content": "---\n# handlers file for ufw\n- name: Enable UFW and close all ports\n ufw: state=enabled policy=deny\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/ufw/tasks/main.yml", "content":...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 261, "all_permissive": false }
ansible_role
DylanLefebvre/SIO21-Ansible
076aaf1bc9e342b08e90f7f1ad35323ec0a374b2
0
roles/wordpress
7,819
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n- name: \"[wordpress] - update cache\"\n apt:\n update_cache: yes\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 84 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 84, "all_permissive": false }
ansible_role
detiber/portable_lab
3c0fb9cc54c22ca7151d4f13288143b0aa232a85
0
roles/openstack_control_host
7,819
[ "permissive" ]
[ { "path": "roles/openstack_control_host/meta/main.yml", "content": "galaxy_info:\n author: <NAME>\n description: OpenStack Control Host configuration for portable lab\n license: Apache License 2.0\n min_ansible_version: 2.3\n platforms:\n - name: EL\n versions:\n - 7\n galaxy_tags: []\ndependen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1364, "all_permissive": true }
ansible_role
harsh2595/ansible-case-study
ab100b84cdbbdb2bacb2925533dc4ac95f7ec068
0
roles/apache
7,819
[ "no_license" ]
[ { "path": "roles/apache/tasks/copy.yml", "content": "---\n- name: copying custom html file\n copy: src=/etc/ansible/roles/apache/files/index.html\n dest=/var/www/html\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "roles/apache/tasks/mai...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 202, "all_permissive": false }
ansible_role
harsh2595/ansible-case-study
ab100b84cdbbdb2bacb2925533dc4ac95f7ec068
0
roles/nginx
7,819
[ "no_license" ]
[ { "path": "roles/nginx/tasks/copy.yml", "content": "---\n- name: copying custom html file\n copy: src=/etc/ansible/roles/nginx/files/index.html\n dest=/var/www/html\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 }, { "path": "roles/nginx/tasks/main.y...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 201, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/elasticsearch-exporter
7,819
[ "no_license" ]
[ { "path": "roles/elasticsearch-exporter/tasks/main.yml", "content": "- name: Create prometheus user\n user:\n name: prometheus\n system: yes\n shell: /bin/false\n home: /var/lib/prometheus\n create_home: no\n\n- name: Download elasticsearch_exporter\n get_url:\n url: \"https://github.com...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1589, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/influxdb_exporter
7,819
[ "no_license" ]
[ { "path": "roles/influxdb_exporter/templates/influxdb_exporter.service.j2", "content": "[Unit]\nDescription=InfluxDB Exporter\nWants=network-online.target\nAfter=network-online.target\n\n[Service]\nUser={{ influxdb_exporter_user }}\nGroup={{ influxdb_exporter_group }}\nType=simple\nExecStart={{ influxdb_exp...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2358, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/logstash-exporter
7,819
[ "no_license" ]
[ { "path": "roles/logstash-exporter/handlers/main.yml", "content": "- name: Restart Logstash Exporter\n systemd:\n name: logstash-exporter\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 94 }, { "path": "roles/logstash-exporter/templates/...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1266, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/mysql-exporter
7,819
[ "no_license" ]
[ { "path": "roles/mysql-exporter/handlers/main.yml", "content": "- name: Restart mysql-prometheus-exporter\n systemd:\n name: mysql-exporter\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 99 }, { "path": "roles/mysql-exporter/tasks/main....
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2193, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/nginx-exporter
7,819
[ "no_license" ]
[ { "path": "roles/nginx-exporter/tasks/main.yml", "content": "---\n- name: Ensure NGINX is installed\n apt:\n name: nginx\n state: present\n update_cache: yes\n\n- name: Download NGINX Prometheus Exporter\n get_url:\n url: \"https://github.com/nginxinc/nginx-prometheus-exporter/releases/downloa...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1555, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/node-exporter
7,819
[ "no_license" ]
[ { "path": "roles/node-exporter/templates/node_exporter.service.j2", "content": "[Unit]\nDescription=Node Exporter\nWants=network-online.target\nAfter=network-online.target\n\n[Service]\nUser=nobody\nExecStart=/usr/local/bin/node_exporter\n\n[Install]\nWantedBy=default.target", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1212, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/php-exporter
7,819
[ "no_license" ]
[ { "path": "roles/php-exporter/templates/php-fpm_exporter.service.j2", "content": "[Unit]\nDescription=PHP FPM Exporter Service\nAfter=network.target\n\n[Service]\nUser=php-fpm_exporter\nGroup=php-fpm_exporter\nType=simple\nExecStart={{ php_fpm_exporter_bin_path }} server --phpfpm.scrape-uri \"unix://{{ php_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1430, "all_permissive": false }
ansible_role
mlouguid/ansible-prometheus-exporters
b079282d5b132012b2227e9cacd69660596a92f5
1
roles/redis-exporter
7,819
[ "no_license" ]
[ { "path": "roles/redis-exporter/defaults/main.yml", "content": "redis_exporter_version: \"1.56.0\"\nredis_exporter_user: \"redis_exporter\"\nredis_exporter_group: \"redis_exporter\"\nredis_exporter_port: 9121\nredis_exporter_binary: \"/usr/local/bin/redis_exporter\"", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1835, "all_permissive": false }
ansible_role
asalah9/test
ae252c94652a78726fbc8d0bed82262edc631999
0
ansible/roles/setup
7,819
[ "no_license" ]
[ { "path": "ansible/roles/setup/tasks/main.yml", "content": "---\n- name: \"update apt packages.\"\n become: yes\n apt:\n update_cache: yes\n upgrade: yes\n\n#To install Node and NPM follow: https://kyle.pericak.com/nodejs-ansible.html\n- name: \"Add nodejs apt key\"\n become: yes\n apt_key:\n u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1008, "all_permissive": false }
ansible_role
trombik/ansible-project-fab
a20219ef6e8abcbf3d2be36fd20c38e67d956c46
0
roles/copy_certs
7,819
[ "no_license" ]
[ { "path": "roles/copy_certs/tasks/main.yml", "content": "---\n\n- name: Create certs directory for haproxy\n ansible.builtin.file:\n path: \"{{ project_haproxy_cert_dir }}\"\n owner: www\n group: wheel\n mode: \"0755\"\n state: directory\n\n- name: Copy TLS certs\n ansible.builtin.copy:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 379, "all_permissive": false }
ansible_role
trombik/ansible-project-fab
a20219ef6e8abcbf3d2be36fd20c38e67d956c46
0
roles/deploy_maintenance_site
7,819
[ "no_license" ]
[ { "path": "roles/deploy_maintenance_site/tasks/main.yml", "content": "---\n\n- name: Deploy maintenance page\n ansible.builtin.git:\n repo: https://github.com/trombik/Simple-Maintenance-Page\n dest: \"{{ project_maintenance_site_dir }}\"\n version: master\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 188, "all_permissive": false }