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
xrichmolex/expensify-infra-challenge
335f6f9d7a5574f8d9f41572cb792e7f8eb5036a
0
roles/webserver
8,035
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "# This Role installs and configures Nginx on the web servers.\n# It uses a Jinja2 template to create an index.html file and deploys a custom nginx.conf file.\n# The playbook also ensures that Nginx is running and enabled to start on boot.\n\n---\n# Ins...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2381, "all_permissive": false }
ansible_role
maxyloon/dotfiles
c6171172976a62694c9a418ca80281542fe02bd2
0
.ansible/roles/gantsign.visual-studio-code-extensions
8,035
[ "no_license" ]
[ { "path": ".ansible/roles/gantsign.visual-studio-code-extensions/vars/pkg-mgr/default.yml", "content": "---\n# Dependencies for Visual Studio Code cli\nvisual_studio_code_extensions_dependencies:\n - which\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 15799, "all_permissive": false }
ansible_role
maxyloon/dotfiles
c6171172976a62694c9a418ca80281542fe02bd2
0
playbook/roles/macosx
8,035
[ "no_license" ]
[ { "path": "playbook/roles/macosx/vars/main.yaml", "content": "dotfiles_path: ~/dotfiles\n\nlinks:\n - { src: \"{{dotfiles_path}}/.ansible/\", dest: \"~/.ansible/\" }", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "playbook/roles/macosx/tasks/main....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 501, "all_permissive": false }
ansible_role
maxyloon/dotfiles
c6171172976a62694c9a418ca80281542fe02bd2
0
playbook/roles/wsl
8,035
[ "no_license" ]
[ { "path": "playbook/roles/wsl/tasks/main.yml", "content": "\n- name: Install packages\n apt:\n state: present\n pkg:\n - jq\n- name: nvm\n shell: >\n curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash\n args:\n creates: \"{{ ansible_env.HOME }}/.nvm/nvm.sh\"\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 237, "all_permissive": false }
ansible_role
maxyloon/dotfiles
c6171172976a62694c9a418ca80281542fe02bd2
0
playbook/roles/wsl2
8,035
[ "no_license" ]
[ { "path": "playbook/roles/wsl2/vars/main.yml", "content": "---\nkernel_source: ../venv/lib/kernel_source", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "playbook/roles/wsl2/tasks/kernel.yml", "content": "# - debug: var=ansible_facts['user_id']\...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1533, "all_permissive": false }
ansible_role
evmuravev/airflow_celery_ansible
8fe6c7a6a95c7c33cba90613ab56906b64aec8e7
0
roles/common
8,035
[ "no_license" ]
[ { "path": "roles/common/templates/airflow.env.j2", "content": "AIRFLOW_UID={{ airflow.os_user }}\nAIRFLOW_HOME=/opt/airflow\n### CORE ###\nAIRFLOW__CORE__EXECUTOR=CeleryExecutor\nAIRFLOW__CORE__FERNET_KEY={{ airflow.fernet_key }}\nAIRFLOW__CORE__LOAD_EXAMPLES=True\nAIRFLOW__CORE__DAGS_FOLDER=/opt/airflow/d...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3355, "all_permissive": false }
ansible_role
evmuravev/airflow_celery_ansible
8fe6c7a6a95c7c33cba90613ab56906b64aec8e7
0
roles/servers
8,035
[ "no_license" ]
[ { "path": "roles/servers/tasks/main.yml", "content": "- set_fact:\n etc_hosts: >-\n {%- set result = {} -%}\n {%- for key, value in hostvars.items() if key.startswith('worker') -%}\n {%- set _ = result.update({key: value['ansible_host']}) -%}\n {%- endfor -%}\n {{ result | ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2000, "all_permissive": false }
ansible_role
evmuravev/airflow_celery_ansible
8fe6c7a6a95c7c33cba90613ab56906b64aec8e7
0
roles/workers
8,035
[ "no_license" ]
[ { "path": "roles/workers/tasks/main.yml", "content": "- include_tasks: \"../roles/common/tasks/run_airflow_container.yml\"\n vars:\n container_name: \"{{ inventory_hostname }}\"\n command: celery worker -q default,\"{{ inventory_hostname }}\"\n restart_policy: always\n hostname: \"{{ inventory_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 544, "all_permissive": false }
ansible_role
jonludlam/jupyterhub-server-config
df90167e473354ea5c5c200805e68e172493aaa6
0
provisioning/roles/certbot
8,035
[ "no_license" ]
[ { "path": "provisioning/roles/certbot/tasks/main.yml", "content": "---\n- name: Update apt\n apt:\n update_cache: yes\n upgrade: yes\n\n- name: Add the certbot repository\n apt_repository:\n repo: ppa:certbot/certbot\n\n- name: Install apt packages\n apt:\n name: \"{{ packages }}\"\n updat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 275, "all_permissive": false }
ansible_role
jonludlam/jupyterhub-server-config
df90167e473354ea5c5c200805e68e172493aaa6
0
provisioning/roles/docker
8,035
[ "no_license" ]
[ { "path": "provisioning/roles/docker/tasks/main.yml", "content": "---\n- name: Install apt packages\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - software-properties-common\n\n- name: Add the docker apt s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 676, "all_permissive": false }
ansible_role
jonludlam/jupyterhub-server-config
df90167e473354ea5c5c200805e68e172493aaa6
0
provisioning/roles/jupyterhub
8,035
[ "no_license" ]
[ { "path": "provisioning/roles/jupyterhub/tasks/main.yml", "content": "---\n- name: Install apt packages\n apt:\n name: \"{{ packages }}\"\n vars:\n packages:\n - python3\n - python3-pip\n - python-pip\n - npm\n - nodejs\n - git\n\n- name: Install http-proxy npm package globally\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3497, "all_permissive": false }
ansible_role
khalily/ansible-kickstart
44b968d6c03e9bede81998ad85d623f3555889a9
0
roles/kickstart
8,035
[ "no_license" ]
[ { "path": "roles/kickstart/templates/kickstart/centos7.2.ks", "content": "#version=DEVEL\n# System authorization information\ninstall\nlang en_US.UTF-8\nauth --enableshadow --passalgo=<PASSWORD>\n# Use network installation\nurl --url=\"{{ install_url }}\"\n# Use graphical install\ngraphical\nfirewall --disa...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 3355, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/playground/playbooks/roles/base
8,035
[ "no_license" ]
[ { "path": "ansible/playground/playbooks/roles/base/tasks/docker.yml", "content": "---\n- name: Install docker for RH family\n block:\n - name: Install yum-utils\n yum:\n state: present\n name:\n - yum-utils\n\n - name: Add docker repo\n command: >-\n yum-config...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4335, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/playground/playbooks/roles/base_vm_preparation
8,035
[ "no_license" ]
[ { "path": "ansible/playground/playbooks/roles/base_vm_preparation/tasks/main.yml", "content": "\n---\n- name: set hostname\n import_role:\n name: base\n tasks_from: set_hostname\n\n- name: install docker\n import_role:\n name: base\n tasks_from: docker\n\n- name: install packages\n import_rol...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 389, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/playground/playbooks/roles/copy_repository
8,035
[ "no_license" ]
[ { "path": "ansible/playground/playbooks/roles/copy_repository/tasks/main.yml", "content": "---\n- name: Clone repo \"{{ scenario }}\n git:\n repo: \"https://gitlab-ci-token:{{ gitlab_token }}@cl-<EMAIL>/competency-center/test-subgroup/{{ scenario }}.git\"\n dest: \"/tmp/{{ scenario }}\"\n version:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 722, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/playground/playbooks/roles/setup_vs_code
8,035
[ "no_license" ]
[ { "path": "ansible/playground/playbooks/roles/setup_vs_code/tasks/main.yml", "content": "---\n- name: Create dir for vscode-server\n file:\n state: directory\n path: /opt/vscode-server\n mode: 0755\n\n- name: Download setup script\n get_url:\n url: https://code-server.dev/install.sh\n dest:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1596, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/playground/playbooks/roles/vagrant
8,035
[ "no_license" ]
[ { "path": "ansible/playground/playbooks/roles/vagrant/tasks/main.yaml", "content": "---\n- name: add hashicorp gpg key\n apt_key:\n url: https://apt.releases.hashicorp.com/gpg\n\n- name: add hashicorp repo\n apt_repository:\n repo: \"deb https://apt.releases.hashicorp.com {{ ansible_facts['distribut...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 491, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/roles/ius
8,035
[ "no_license" ]
[ { "path": "ansible/roles/ius/tasks/main.yaml", "content": "- name: Install IUS Community dependency\n yum:\n name: epel-release\n state: present\n register: result\n until: result is success\n retries: 10\n\n- name: Install IUS Community repository\n yum:\n name: https://repo.ius.io/ius-releas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 503, "all_permissive": false }
ansible_role
ynyky/888ynk888
ccad1a1add4212824fd94337f5499977291ee979
1
ansible/roles/testpmd
8,035
[ "no_license" ]
[ { "path": "ansible/roles/testpmd/tasks/main.yaml", "content": "- name: 'Create folder for testpmd'\n file:\n path: \"/home/michal/github/ansible/testpmd-dir\"\n state: directory\n mode: 0755\n\n- name: 'Download oras binary'\n get_url:\n url: 'http://10.7.0.200/oras/oras'\n dest: '/home/mic...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 930, "all_permissive": false }
ansible_role
harshalk91/wikimedia-deploy-tw
2be0a63b5e27860f72868a0f77f04477392546c4
0
deployment/roles/install
8,035
[ "no_license" ]
[ { "path": "deployment/roles/install/tasks/main.yml", "content": "---\n- name: Add preflight requiremtn for iptables\n shell: echo '1' > /proc/sys/net/bridge/bridge-nf-call-iptables\n\n- name: Setup Minikube\n shell: minikube start --vm-driver=none --kubernetes-version=1.15.1\n\n- name: Create .minikube di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1200, "all_permissive": false }
ansible_role
harshalk91/wikimedia-deploy-tw
2be0a63b5e27860f72868a0f77f04477392546c4
0
deployment/roles/post-install
8,035
[ "no_license" ]
[ { "path": "deployment/roles/post-install/tasks/deploy.yaml", "content": "---\n- set_fact:\n mysqlusername: '{{ \"cm9vdAo=\" | b64decode }}'\n mysqlpassword: '{{ \"<PASSWORD>\" | b64decode}}'\n mysqldatabase: '{{ \"bWVkaWF3aWtpCg==\" | b64decode}}'\n yamlpath: '$HOME/wikimedia-deploy-tw/deplo...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1589, "all_permissive": false }
ansible_role
harshalk91/wikimedia-deploy-tw
2be0a63b5e27860f72868a0f77f04477392546c4
0
deployment/roles/pre-install
8,035
[ "no_license" ]
[ { "path": "deployment/roles/pre-install/tasks/main.yml", "content": "---\n- name: Install Minikube binary\n get_url:\n url: https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64\n mode: '0755'\n dest: /usr/bin/minikube\n\n- name: Install Docker\n yum:\n name: \n - yum...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 984, "all_permissive": false }
ansible_role
Drowze/mastering-ansible
4d78f029e8dec5a2d641cf1c498a9821d9bfedef
0
roles/apache2
8,035
[ "no_license" ]
[ { "path": "roles/apache2/tasks/main.yml", "content": "---\n- name: install apache2\n apt:\n name:\n - apache2\n - libapache2-mod-wsgi\n state: present\n\n- name: ensure mod_wsgi enabled\n apache2_module: state=present name=wsgi\n notify: restart apache2\n\n- name: de-activate default apac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 427, "all_permissive": false }
ansible_role
Drowze/mastering-ansible
4d78f029e8dec5a2d641cf1c498a9821d9bfedef
0
roles/control
8,035
[ "no_license" ]
[ { "path": "roles/control/tasks/main.yml", "content": "---\n- name: install tools\n apt:\n name:\n - curl\n - python-httplib2\n state: present\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 100, "all_permissive": false }
ansible_role
redhat-performance/scalelab-sriov-prep
97b6449ad725bed941d3526c34482bccf912b060
1
roles/sriov-prep
8,033
[ "permissive" ]
[ { "path": "roles/sriov-prep/tasks/main.yml", "content": "---\n- name: Download ocpinv.json\n block:\n - uri:\n url: \"{{ performance.lab_url }}/instack/{{ cloud_name }}_ocpinventory.json\"\n return_content: yes\n register: response\n \n - set_fact:\n ocpinv: \"{{ response...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3735, "all_permissive": true }
ansible_role
cch7e/ansible-vps
25fdf0a109c69cc53864c618dbf4b1619cbc7ee9
0
roles/autoheal
8,033
[ "no_license" ]
[ { "path": "roles/autoheal/tasks/main.yml", "content": "---\n- name: Create Directories\n file:\n path: \"{{ item }}\"\n state: directory\n owner: \"root\"\n group: \"root\"\n mode: '770'\n with_items:\n - \"/services/autoheal\"\n\n- name: Template docker-compose.yml\n template:\n src...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 706, "all_permissive": false }
ansible_role
cch7e/ansible-vps
25fdf0a109c69cc53864c618dbf4b1619cbc7ee9
0
roles/ddns
8,033
[ "no_license" ]
[ { "path": "roles/ddns/templates/docker-compose.yml", "content": "version: \"3.8\"\n\nservices:\n ddns:\n container_name: ddns\n image: qmcgaw/ddns-updater\n restart: always\n # ports:\n # - 8000:8000\n volumes:\n - /etc/localtime:/etc/localtime:ro\n - ./data:/updater/data\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1044, "all_permissive": false }
ansible_role
cch7e/ansible-vps
25fdf0a109c69cc53864c618dbf4b1619cbc7ee9
0
roles/docker
8,033
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Uninstall old Docker versions\n apt: \n name:\n - docker\n - docker-engine\n - docker.io\n - containerd\n - runc\n state: absent\n register: result\n until: result is succeeded\n \n- name: Update apt-cache\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1605, "all_permissive": false }
ansible_role
cch7e/ansible-vps
25fdf0a109c69cc53864c618dbf4b1619cbc7ee9
0
roles/tls-shunt-proxy
8,033
[ "no_license" ]
[ { "path": "roles/tls-shunt-proxy/tasks/main.yml", "content": "---\n- name: Install tls-shunt-proxy\n ansible.builtin.shell:\n chdir: \"~\"\n cmd: |\n curl -L -s https://raw.githubusercontent.com/liberal-boy/tls-shunt-proxy/master/dist/install.sh -o install_tls-shunt-proxy.sh\n bash install_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 661, "all_permissive": false }
ansible_role
cch7e/ansible-vps
25fdf0a109c69cc53864c618dbf4b1619cbc7ee9
0
roles/v2ray
8,033
[ "no_license" ]
[ { "path": "roles/v2ray/templates/docker-compose.yml", "content": "version: '3.8'\n\nservices:\n v2ray:\n image: v2fly/v2fly-core\n container_name: v2ray\n restart: always\n network_mode: host\n volumes:\n - /etc/localtime:/etc/localtime:ro\n - ./data:/etc/v2ray\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 967, "all_permissive": false }
ansible_role
netscruff/C3TP-DevOps-Technical-Challenge
c204bbf54ba065b1c6a1ef58b3455dd57172b085
0
deploy/ansible/roles/bootstrap_instances
8,033
[ "no_license" ]
[ { "path": "deploy/ansible/roles/bootstrap_instances/tasks/main.yml", "content": "---\n\n- name: Install Python\n apt: name=python-minimal update_cache=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "deploy/ansible/roles/bootstrap_instances/t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 550, "all_permissive": false }
ansible_role
netscruff/C3TP-DevOps-Technical-Challenge
c204bbf54ba065b1c6a1ef58b3455dd57172b085
0
deploy/ansible/roles/create_instances
8,033
[ "no_license" ]
[ { "path": "deploy/ansible/roles/create_instances/tasks/main.yml", "content": "---\n- name: launch instances\n os_server:\n name: \"{{ prefix }}--{{ item.name }}\"\n state: present\n image: \"{{ item.image }}\"\n key_name: \"{{ item.key }}\"\n flavor: \"{{ item.flavor }}\"\n nics: \"{{ ite...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1132, "all_permissive": false }
ansible_role
taihon/otus-linux-pro-hw14
209b49fd51330d5c7afc2d302f3afa37a350ff15
0
ansible/roles/monitored_node
8,033
[ "no_license" ]
[ { "path": "ansible/roles/monitored_node/tasks/main.yml", "content": "- name: Install node_exporter for RHEL\n import_tasks: redhat.yml\n when: ansible_facts['os_family']|lower == 'redhat'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": false }
ansible_role
taihon/otus-linux-pro-hw14
209b49fd51330d5c7afc2d302f3afa37a350ff15
0
ansible/roles/monitoring_server
8,033
[ "no_license" ]
[ { "path": "ansible/roles/monitoring_server/tasks/install-grafana.yml", "content": "---\n- name: Copy grafana.rpm file\n copy:\n src: \"files/distrib/grafana-9.3.2-1.x86_64.rpm\"\n dest: \"/tmp/grafana.rpm\"\n- name: Install grafana from rpm\n ansible.builtin.yum:\n name: \"/tmp/grafana.rpm\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1435, "all_permissive": false }
ansible_role
boakaa24/diplom
6b688f9df24871bb2c02b07f42dadb4ceacd6655
0
ansible/db/roles/db-setup-slave
8,033
[ "no_license" ]
[ { "path": "ansible/db/roles/db-setup-slave/tasks/main.yml", "content": "---\n - name: Creatnge a new database\n mysql_db:\n name: wordpress\n state: present\n login_user: wordpress\n login_password: \"<PASSWORD>\"\n\n - name: Setuping mysql slave config\n template:\n src: te...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 803, "all_permissive": false }
ansible_role
boakaa24/diplom
6b688f9df24871bb2c02b07f42dadb4ceacd6655
0
ansible/wordpress/roles/wordpress
8,033
[ "no_license" ]
[ { "path": "ansible/wordpress/roles/wordpress/tasks/main.yml", "content": "---\n - name: Updating remote system\n apt:\n update_cache: yes\n\n - name: Installing rsync\n apt:\n name: rsync\n state: latest\n\n - name: Reloading rsync\n service:\n name: rsync\n state: resta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2502, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/common
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/common/tasks/main.yml", "content": "---\n - name: Add Docker GPG apt Key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n\n - name: Add Docker Repository\n apt_repository:\n repo: deb https://download.docker.com/linux/ubu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 535, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/service-update
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/service-update/tasks/main.yml", "content": "---\n- name: Rolling update\n shell: docker service update \"{{ service_name }}\" --image \"{{ image_name }}\"\n run_once: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 123 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 123, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/stack-deploy
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/stack-deploy/files/briana-customer.yml", "content": "version: '3.3'\nservices:\n briana-customer:\n image: ttre16/briana-customer:latest\n env_file:\n - briana.env\n deploy:\n replicas: 2\n endpoint_mode: dnsrr\n resources:\n limits:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 3217, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/swarm-init
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/swarm-init/tasks/main.yml", "content": "---\n- name: Init a new Swarm cluster\n docker_swarm:\n state: present\n register: swarm_cluster_info\n\n- name: Add leader label\n docker_node:\n hostname: \"{{ ansible_hostname }}\"\n labels:\n role: leader\n\n-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 349, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/swarm-manager
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/swarm-manager/vars/main.yml", "content": "---\njoin_token: \"{{ hostvars['leader-node']['swarm_cluster_info']['swarm_facts']['JoinTokens']['Manager'] }}\"\nremote_addrs: \"{{ hostvars['leader-node']['ansible_default_ipv4']['address'] }}:2377\"\n", "license_typ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 501, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/swarm-stack
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/swarm-stack/tasks/main.yml", "content": "---\n- block:\n - include: stacks/base-stack.yaml\n run_once: true\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "docker-swarm-cluster/roles/swarm-stack/templat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2320, "all_permissive": false }
ansible_role
briana-crm/briana-deploy
a279f8bfcc603758d8678c9c56b4492b3ab68938
1
docker-swarm-cluster/roles/swarm-worker
8,033
[ "no_license" ]
[ { "path": "docker-swarm-cluster/roles/swarm-worker/vars/main.yml", "content": "---\njoin_token: \"{{ hostvars['leader-node']['swarm_cluster_info']['swarm_facts']['JoinTokens']['Worker'] }}\"\nremote_addrs: \"{{ hostvars['leader-node']['ansible_default_ipv4']['address'] }}:2377\"\n", "license_type"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 337, "all_permissive": false }
ansible_role
idb-project/idb-ansible
0e43efde884601f77adc1038aa6cd0b6dd6ae6b7
1
roles/idb
8,033
[ "no_license" ]
[ { "path": "roles/idb/tasks/git.yml", "content": "---\n- name: get the IDB from it's git repo\n git:\n repo: https://github.com/idb-project/the-idb.git\n dest: '/opt/the-idb'\n force: yes\n\n- name: symlink config files\n file:\n src: /opt/the-idb/config-example\n dest: /opt/the-idb/config\n ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2875, "all_permissive": false }
ansible_role
idb-project/idb-ansible
0e43efde884601f77adc1038aa6cd0b6dd6ae6b7
1
roles/mysql
8,033
[ "no_license" ]
[ { "path": "roles/mysql/templates/my-tmp.cnf.j2", "content": "[client]\nuser=root\npassword={{ <PASSWORD> }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "roles/mysql/tasks/debian.yml", "content": "- name: Install MySQL Server\n apt:\n n...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2122, "all_permissive": false }
ansible_role
idb-project/idb-ansible
0e43efde884601f77adc1038aa6cd0b6dd6ae6b7
1
roles/passenger
8,033
[ "no_license" ]
[ { "path": "roles/passenger/tasks/yum.yml", "content": "---\n- name: Enable the passenger repo\n yum_repository:\n name: passenger\n description: Passenger repo\n baseurl: https://oss-binaries.phusionpassenger.com/yum/passenger/el/$releasever/$basearch\n gpgkey: https://packagecloud.io/gpg.key\n...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1929, "all_permissive": false }
ansible_role
idb-project/idb-ansible
0e43efde884601f77adc1038aa6cd0b6dd6ae6b7
1
roles/rake
8,033
[ "no_license" ]
[ { "path": "roles/rake/tasks/main.yml", "content": "---\n- include_tasks: repo.yml\n when: use_repo\n tags:\n - rake\n- include_tasks: rvm.yml\n when: use_repo == false\n tags:\n - rake\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 }, { "path"...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 822, "all_permissive": false }
ansible_role
idb-project/idb-ansible
0e43efde884601f77adc1038aa6cd0b6dd6ae6b7
1
roles/sidekiq
8,033
[ "no_license" ]
[ { "path": "roles/sidekiq/tasks/main.yml", "content": "---\n# tasks file for sidekiq\n- include_tasks: upstart.yml\n notify: reload upstart\n when: (ansible_distribution == \"Ubuntu\" and ansible_distribution_major_version == \"14\")\n\n- include_tasks: systemd.yml\n when: (ansible_distribution == \"CentO...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1177, "all_permissive": false }
ansible_role
idb-project/idb-ansible
0e43efde884601f77adc1038aa6cd0b6dd6ae6b7
1
roles/slapd
8,033
[ "no_license" ]
[ { "path": "roles/slapd/tasks/redhat.yml", "content": "---\n- name: Install LDAP server\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - openldap-servers\n - openldap-clients\n tags:\n - slapd\n...\n", "license_type": "no_license", "detected_licenses": [], "size_...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 326, "all_permissive": false }
ansible_role
antuann/slurm_Ansible_workshop
c9a7771bc0c9d4a9d297596cbc975943f10f64bf
0
roles/app
8,033
[ "no_license" ]
[ { "path": "roles/app/templates/start.sh.j2", "content": "#!/bin/bash\ncd /opt/xpaste_practicum/bin\nexport PATH=$PATH:/opt/rbenv/bin:/opt/rbenv/versions/{{ version_ruby }}/bin\nexport SECRET_KEY_BASE=\"{{ secret_key_base }}\"\nexport RAILS_ENV=\"{{ rails_env }}\"\nexport RAILS_LOG_TO_STDOUT=\"{{ rails_log_t...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 6079, "all_permissive": false }
ansible_role
antuann/slurm_Ansible_workshop
c9a7771bc0c9d4a9d297596cbc975943f10f64bf
0
roles/postgres
8,033
[ "no_license" ]
[ { "path": "roles/postgres/defaults/main.yml", "content": "---\n# defaults file for postgres\nrp_db_host: \"127.0.0.1\"\nrp_app_user: \"app_user\"\nrp_db_port: \"5432\"\nrp_db_name: \"db_app\"\nrp_db_user: \"app_user\"\nrp_db_password: \"<PASSWORD>\"\n", "license_type": "no_license", "detected_licens...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2383, "all_permissive": false }
ansible_role
ahmedombada/ansible-go
98970acffea848bb739d894832e2504b70de212d
0
roles/deploy-app
8,033
[ "no_license" ]
[ { "path": "roles/deploy-app/tasks/dependencies.yml", "content": "\n- name: Install dependencies\n apt: name={{ packages }} state=present\n vars:\n packages:\n - python3-pip\n\n- name: Install docker-py\n pip:\n name: docker-py\n executable: pip3", "license_type": "no_license", "dete...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 638, "all_permissive": false }
ansible_role
ahmedombada/ansible-go
98970acffea848bb739d894832e2504b70de212d
0
roles/jenkins
8,033
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "---\n- name: update cache\n apt:\n update_cache: yes\n become: true\n\n- import_tasks: dependencies.yml\n\n- name: Download go\n get_url:\n url: https://go.dev/dl/go1.17.5.linux-amd64.tar.gz\n dest: /home/ahmed.ombada\n mode: '0644'\n\n- n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1184, "all_permissive": false }
ansible_role
ahmedombada/ansible-go
98970acffea848bb739d894832e2504b70de212d
0
roles/nginx
8,033
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- import_tasks: dependencies.yml\n\n- name: copy config files \n ansible.builtin.template:\n src: server-config.j2\n dest: /etc/nginx/sites-available/default.conf\n owner: root\n group: root\n mode: '0644'\n\n- name: create sym links\n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 712, "all_permissive": false }
ansible_role
bbratchiv/ansible_role
76f01295d9ba3bb0cf3420aa07a098179079d40b
0
roles/create_swap
8,033
[ "no_license" ]
[ { "path": "roles/create_swap/handlers/main.yml", "content": "---\n# handlers file for create_swap", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/create_swap/defaults/main.yml", "content": "---\n# defaults file for create_swap\n", "li...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 713, "all_permissive": false }
ansible_role
bbratchiv/ansible_role
76f01295d9ba3bb0cf3420aa07a098179079d40b
0
roles/create_user
8,033
[ "no_license" ]
[ { "path": "roles/create_user/tasks/main.yml", "content": "---\n# tasks file for create_user\n- name: create users \n user:\n name: \"{{ item.username }}\"\n shell: /bin/bash\n state: present\n with_items: \"{{USERS}}\"\n \n- name: upload ssh key \n authorized_key:\n user:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 398, "all_permissive": false }
ansible_role
bbratchiv/ansible_role
76f01295d9ba3bb0cf3420aa07a098179079d40b
0
roles/nginx_app
8,033
[ "no_license" ]
[ { "path": "roles/nginx_app/vars/main.yml", "content": "---\n# vars file for nginx_app", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "roles/nginx_app/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ngi...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 528, "all_permissive": false }
ansible_role
anton-sidelnikov/ansible-ubuntu-common-setup
f90fb9c8e78267307347295d15108f0359c3ab7f
0
roles/cpu_operation_mode
8,033
[ "no_license" ]
[ { "path": "roles/cpu_operation_mode/tasks/main.yaml", "content": "---\n- name: Validate governor variable\n assert:\n that:\n - governor is defined\n - governor is string\n - governor in ['performance', 'powersave', 'userspace', 'ondemand', 'conservative', 'schedutil']\n fail_msg: \"Va...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2444, "all_permissive": false }
ansible_role
anton-sidelnikov/ansible-ubuntu-common-setup
f90fb9c8e78267307347295d15108f0359c3ab7f
0
roles/disable_cstate
8,033
[ "no_license" ]
[ { "path": "roles/disable_cstate/README.md", "content": "# Ansible Role: disable_cstate\nThis Ansible role manages CPU idle states on Linux systems using the cpupower tool.\n\n## Prerequisites\n\n- Ansible installed on the control node.\n- Passwordless SSH access to the target hosts.\n\n## Role Variables\n\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2974, "all_permissive": false }
ansible_role
anton-sidelnikov/ansible-ubuntu-common-setup
f90fb9c8e78267307347295d15108f0359c3ab7f
0
roles/encrypt_partition
8,033
[ "no_license" ]
[ { "path": "roles/encrypt_partition/defaults/main.yaml", "content": "partitions:\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 12 }, { "path": "roles/encrypt_partition/meta/main.yaml", "content": "collections:\n - community.crypto\n", "license_type": "n...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3946, "all_permissive": false }
ansible_role
anton-sidelnikov/ansible-ubuntu-common-setup
f90fb9c8e78267307347295d15108f0359c3ab7f
0
roles/rename_interface
8,033
[ "no_license" ]
[ { "path": "roles/rename_interface/README.md", "content": "# Ansible Role: rename_interface\nThis Ansible playbook is designed to automate the process of renaming the active network interface\nto value of `interface_name` variable and applying a new `Netplan` configuration.\n\n## Prerequisites\n\n- Ansible i...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3730, "all_permissive": false }
ansible_role
Carriage-Horse-Technologies/legacy-stack
797ebd3440490e0bad7fcdba21d78c2baf59be24
0
infra/legacy-stack/ansible/roles/docker
8,033
[ "no_license" ]
[ { "path": "infra/legacy-stack/ansible/roles/docker/tasks/install.yml", "content": "- name: yum updateを実行します\n become: yes\n yum:\n update_cache: yes\n\n- name: Remove installed docker\n become: yes\n yum:\n name:\n - docker\n - docker-common\n - container-selinux\n - docker-sel...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 883, "all_permissive": false }
ansible_role
Carriage-Horse-Technologies/legacy-stack
797ebd3440490e0bad7fcdba21d78c2baf59be24
0
infra/legacy-stack/ansible/roles/git
8,033
[ "no_license" ]
[ { "path": "infra/legacy-stack/ansible/roles/git/tasks/install.yml", "content": "- name: yum updateを実行します\n become: yes\n yum:\n update_cache: yes\n\n- name: Gitのインストールを行います\n become: yes\n yum:\n name: git\n state: present\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 147, "all_permissive": false }
ansible_role
Carriage-Horse-Technologies/legacy-stack
797ebd3440490e0bad7fcdba21d78c2baf59be24
0
infra/legacy-stack/ansible/roles/vim
8,033
[ "no_license" ]
[ { "path": "infra/legacy-stack/ansible/roles/vim/tasks/install.yml", "content": "- name: yum updateを実行します\n become: yes\n yum:\n update_cache: yes\n\n- name: Vimのインストールを行います\n become: yes\n yum:\n name: vim\n state: present\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 147, "all_permissive": false }
ansible_role
bremac/ansible-sentry
9672eed9a97e12a096cf7b612bf5931ea99ab33e
1
roles/common
8,033
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: sync apt cache\n apt: update_cache=yes\n\n- name: install ntp\n apt: name=ntp state=present\n\n- name: install build requirements\n apt: name={{ item }} state=present\n with_items:\n - clang\n - libffi-dev\n - libjpeg-dev\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 448, "all_permissive": false }
ansible_role
bremac/ansible-sentry
9672eed9a97e12a096cf7b612bf5931ea99ab33e
1
roles/nginx
8,033
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: install nginx\n apt: name=nginx-full state=present\n\n- name: purge default nginx config directories\n file: path={{ item }} state=absent\n with_items:\n - /etc/nginx/conf.d/\n - /etc/nginx/sites-available/\n - /etc/nginx/sites-ena...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 563, "all_permissive": false }
ansible_role
bremac/ansible-sentry
9672eed9a97e12a096cf7b612bf5931ea99ab33e
1
roles/postgresql
8,033
[ "no_license" ]
[ { "path": "roles/postgresql/tasks/main.yml", "content": "---\n- name: add postgresql signing key\n apt_key: url='https://www.postgresql.org/media/keys/ACCC4CF8.asc' state=present\n\n- name: add postgresql apt repository\n apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main'...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 666, "all_permissive": false }
ansible_role
bremac/ansible-sentry
9672eed9a97e12a096cf7b612bf5931ea99ab33e
1
roles/redis
8,033
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "---\n- name: add redis apt repository\n apt_repository: repo='ppa:chris-lea/redis-server' update_cache=yes state=present\n\n- name: install redis\n apt: name=redis-server state=present\n notify:\n - restart redis\n\n- name: stop default redis server\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1567, "all_permissive": false }
ansible_role
bremac/ansible-sentry
9672eed9a97e12a096cf7b612bf5931ea99ab33e
1
roles/sentry
8,033
[ "no_license" ]
[ { "path": "roles/sentry/tasks/main.yml", "content": "---\n- name: create sentry system user\n user: name=sentry home={{ sentry_root}} shell=/bin/bash state=present\n\n- name: create sentry database user\n postgresql_user: user=sentry role_attr_flags=CREATEDB,SUPERUSER state=present\n become: yes\n becom...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 6497, "all_permissive": false }
ansible_role
Daniel-Ceriana/UTNFRA_SO_2do_Parcial_Ceriana
5592b59a4eb324141335be953f2cd06fbdb555ca
0
202406/ansible/roles/archivos
8,033
[ "no_license" ]
[ { "path": "202406/ansible/roles/archivos/templates/equipo.j2", "content": "IP: {{ ansible_facts.all_ipv4_addresses }}\nDistribucion: {{ ansible_facts.distribution }}\nCantidad de Cores: {{ ansible_facts.processor_cores }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 581, "all_permissive": false }
ansible_role
Daniel-Ceriana/UTNFRA_SO_2do_Parcial_Ceriana
5592b59a4eb324141335be953f2cd06fbdb555ca
0
202406/ansible/roles/cambiarsudo
8,033
[ "no_license" ]
[ { "path": "202406/ansible/roles/cambiarsudo/defaults/main.yml", "content": "---\n# defaults file for cambiarsudo\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "202406/ansible/roles/cambiarsudo/handlers/main.yml", "content": "---\n# handlers ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 476, "all_permissive": false }
ansible_role
Daniel-Ceriana/UTNFRA_SO_2do_Parcial_Ceriana
5592b59a4eb324141335be953f2cd06fbdb555ca
0
202406/ansible/roles/directorios
8,033
[ "no_license" ]
[ { "path": "202406/ansible/roles/directorios/tasks/main.yml", "content": "---\n- name: \"Crear directorios\"\n file:\n path: \"/tmp/2do_parcial/{{ item }}\"\n state: directory\n mode: '0775'\n recurse: yes\n with_items: \n - \"alumno\"\n - \"equipo\"\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 334, "all_permissive": false }
ansible_role
vanduc95/collectd-graphite-ansible
412451f1518bfe7201318d965dfbbf7bb5aa1125
0
roles/collectd
8,033
[ "no_license" ]
[ { "path": "roles/collectd/vars/main.yml", "content": "---\n# vars file for collectd", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/collectd/defaults/main.yml", "content": "---\n# defaults file for collectd", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 732, "all_permissive": false }
ansible_role
vanduc95/collectd-graphite-ansible
412451f1518bfe7201318d965dfbbf7bb5aa1125
0
roles/graphite
8,033
[ "no_license" ]
[ { "path": "roles/graphite/defaults/main.yml", "content": "SECRET_KEY: 'your-secret-key'\nTIME_ZONE: 'Asia/Ho_Chi_Minh'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "roles/graphite/tasks/main.yml", "content": "---\n# tasks file for graphite\n\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2858, "all_permissive": false }
ansible_role
heekof/monasca-ansible-final
3083acc69083da4f60ad87d3c9f53f77f0bb9364
0
monasca-vagrant-master/roles/kafka
8,038
[ "no_license" ]
[ { "path": "monasca-vagrant-master/roles/kafka/tasks/start.yml", "content": "---\n- name: Enable and Start Kafka\n service: name=kafka state=started enabled=yes\n\n# Jaafar to debug\n\n- name: wait for kafka port\n wait_for: host={{kafka_listen_address| default('localhost')}} port={{kafka_port}} state=star...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 282, "all_permissive": false }
ansible_role
kvegh/AutomATa
674f29c4cca1f82011e4a6173a4deabe9aeca5e0
3
roles/qwsj.win-zabbix-agent
8,038
[ "no_license" ]
[ { "path": "roles/qwsj.win-zabbix-agent/vars/main.yml", "content": "---\n# zabbix_agent_url: 'https://www.zabbix.com/downloads/3.4.6/zabbix_agents_3.4.6.win.zip'\nzabbix_agent_url: https://www.zabbix.com/downloads/3.4.6/zabbix_agent-3.4.6-windows-i386.zip\nzabbix_agent_ip: \"0.0.0.0\"\nzabbix_agent_port: \"1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1685, "all_permissive": false }
ansible_role
kvegh/AutomATa
674f29c4cca1f82011e4a6173a4deabe9aeca5e0
3
roles/redhatinsights.insights-client
8,038
[ "permissive" ]
[ { "path": "roles/redhatinsights.insights-client/tasks/main.yml", "content": "---\n#\n# Copyright 2018,2017 Red Hat, Inc\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1963, "all_permissive": true }
ansible_role
pasakAlam/skilltest
579aa347d77bd7c33a51a126d1e2674090282a7e
0
ansible/roles/deploy-app
8,038
[ "no_license" ]
[ { "path": "ansible/roles/deploy-app/tasks/main.yml", "content": "---\n\n- name: Ensure app directory exists\n file:\n path: /home/ubuntu/app\n state: directory\n owner: ubuntu\n group: ubuntu\n mode: '0755'\n\n- name: Create postgres init & conf directory\n file:\n path: /home/ubuntu/app...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3014, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-haproxy/roles/apt
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-haproxy/roles/apt/tasks/main.yml", "content": "---\n- name: Update and Upgrade packages\n apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time: \"{{ apt_update_cache_valid_time }}\"\n\n- name: Install packages\n apt:\n name: \"{{ apt_install }}\"\n state: \"{{ ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 324, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-haproxy/roles/monit
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-haproxy/roles/monit/tasks/main.yml", "content": "---\n- name: Start monit service\n systemd:\n name: monit.service\n state: started\n- name: Configure UI\n lineinfile:\n path: /etc/monit/monitrc\n line: \"set httpd port 2812 and allow admin:monit\"\n- name: Restart moni...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 316, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-haproxy/roles/ntp
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-haproxy/roles/ntp/tasks/main.yml", "content": "---\n- name: Set timezone\n timezone:\n name: \"{{ timezone }}\"\n\n- name: Start and enable ntp\n service:\n name: ntp\n state: started\n enabled: yes\n\n- name: Daily sync\n shell: crontab -l | { cat; echo \"@daily /usr/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 269, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-logstash/roles/elasticsearch
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-logstash/roles/elasticsearch/tasks/main.yml", "content": "---\n- name: Install Elasticsearch\n package:\n name: elasticsearch\n state: present\n\n- name: Configure Elasticsearch.\n template:\n src: \"elasticsearch.yml.j2\"\n dest: /etc/elasticsearch/elasticsearch.yml\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1384, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-logstash/roles/java
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-logstash/roles/java/defaults/main.yml", "content": "---\njava_version: 8\njava_packages: openjdk-{{ java_version }}-jdk", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "4.Ansible/ab-logstash/roles/java/tasks/main.yml", "c...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 365, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-logstash/roles/logstash
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-logstash/roles/logstash/defaults/main.yml", "content": "---\nlogstash_host: \"192.168.50.10\"\nlogstash_port: 10514\nes_host: 192.168.50.10\nes_port: 9200\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "4.Ansible/ab-logsta...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 530, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-webui/roles/apt
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-webui/roles/apt/tasks/main.yml", "content": "---\n- name: Update and Upgrade packages\n apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time: \"{{ apt_update_cache_valid_time }}\"\n\n- name: Install packages\n apt:\n name: \"{{ apt_install }}\"\n state: \"{{ ap...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 551, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-webui/roles/kibana
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-webui/roles/kibana/defaults/main.yml", "content": "---\nkibana_server_port: 5601\nkibana_server_host: \"192.168.50.20\"\n\nkibana_elasticsearch_url: \"http://192.168.50.10:9200\"\nkibana_elasticsearch_port: 9200\nkibana_elasticsearch_username: \"\"\nkibana_elasticsearch_password: \"\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 566, "all_permissive": false }
ansible_role
Meiirzhan28/devops_course
afc2cacc344502bb4e6742b5ba6cc56f617c190a
0
4.Ansible/ab-webui/roles/nginx
8,038
[ "no_license" ]
[ { "path": "4.Ansible/ab-webui/roles/nginx/tasks/main.yml", "content": "---\n- name: Install nginx\n package:\n name: nginx\n state: present\n\n- name: Copy nginx configuration.\n template:\n src: \"nginx.conf.j2\"\n dest: /etc/nginx/nginx.conf\n owner: root\n group: root\n mode: 0644\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 729, "all_permissive": false }
ansible_role
iamgini/ansible-collection-wordpress
5ae69d4969f80451b0ed6eca791fffa075984fc0
0
roles/certbot_install
8,038
[ "no_license" ]
[ { "path": "roles/certbot_install/tasks/main.yml", "content": "---\n# tasks file for certbot_install\n- name: Update apt cache\n ansible.builtin.apt:\n update_cache: true\n\n- name: Install Certbot\n ansible.builtin.apt:\n name:\n - certbot\n - python3-certbot-nginx\n state: present\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 231, "all_permissive": false }
ansible_role
iamgini/ansible-collection-wordpress
5ae69d4969f80451b0ed6eca791fffa075984fc0
0
roles/nginx_install
8,038
[ "no_license" ]
[ { "path": "roles/nginx_install/tasks/nginx_Debian.yaml", "content": "---\n- name: Set variables\n ansible.builtin.set_fact:\n root_group: root\n nginx_conf_path: /etc/nginx/conf.d\n nginx_conf_file_path: /etc/nginx/nginx.conf\n nginx_mime_file_path: /etc/nginx/mime.types\n nginx_pidfile: /ru...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1027, "all_permissive": false }
ansible_role
iamgini/ansible-collection-wordpress
5ae69d4969f80451b0ed6eca791fffa075984fc0
0
roles/ufw_install
8,038
[ "no_license" ]
[ { "path": "roles/ufw_install/vars/main.yml", "content": "---\n# vars file for ufw_install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/ufw_install/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1190, "all_permissive": false }
ansible_role
iamgini/ansible-collection-wordpress
5ae69d4969f80451b0ed6eca791fffa075984fc0
0
roles/wordpress_backup
8,038
[ "no_license" ]
[ { "path": "roles/wordpress_backup/vars/main.yml", "content": "---\n# vars file for wordpress-backup\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/wordpress_backup/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: ro...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2468, "all_permissive": false }
ansible_role
iamgini/ansible-collection-wordpress
5ae69d4969f80451b0ed6eca791fffa075984fc0
0
roles/wordpress_install
8,038
[ "no_license" ]
[ { "path": "roles/wordpress_install/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - wordpress_install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "roles/wordpress_install/handlers/main.yml", "conte...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 6386, "all_permissive": false }
ansible_role
iamgini/ansible-collection-wordpress
5ae69d4969f80451b0ed6eca791fffa075984fc0
0
roles/wordpress_restore
8,038
[ "no_license" ]
[ { "path": "roles/wordpress_restore/vars/main.yml", "content": "---\n# vars file for wordpress_restore\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/wordpress_restore/templates/mysql.cnf.j2", "content": "[mysql]\nuser={{ wordpress_data...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 4266, "all_permissive": false }
ansible_role
MoritzFago/ansible-byro
8ce684ef583b8704b67df43e44daec483745fe63
1
roles/byro
8,043
[ "no_license" ]
[ { "path": "roles/byro/handlers/main.yml", "content": "---\n- name: restart byro\n ansible.builtin.systemd:\n name: byro-web\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 }, { "path": "roles/byro/files/destinations.py", "content"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 9701, "all_permissive": false }
ansible_role
sudharsanpunniyakotti/Alation
bbf225305f217cc918e50cefbdcff321b2bdfc4f
0
roles/apache
8,043
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n\n- name: installing httpd\n yum:\n name: \"{{ pack }}\"\n state: \"installed\"\n\n- name: copying html file\n copy:\n content: |\n Hello World \"{{ ansible_hostname }}\"\n dest: /var/www/html/index.html\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 434, "all_permissive": false }
ansible_role
graceeemj/ansible-nodejs-debian
8e392976fb29c28bbf1fd370aff990e287d22b6b
0
roles/nodejs
8,043
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/main.yml", "content": "---\n- name: Install node js and npm\n apt:\n state: present\n name:\n - nodejs\n - npm\n\n- name: Install forever\n npm: name=forever global=yes state=present\n\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 193, "all_permissive": false }
ansible_role
techgurucloud/Ansible-playbooks
8e8de378661856957b13441c54b885f7c401ae15
4
jenkins-installation/roles/jenkins
8,043
[ "no_license" ]
[ { "path": "jenkins-installation/roles/jenkins/vars/main.yml", "content": "---\n# vars file for jenkins\n\njava:\n VERSION: \"java-1.8.0-openjdk\"\n ALTERNATIVES: \"/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.144-0.b01.el7_4.x86_64/jre/bin/java\"\n\njenkins:\n repo_URL: \"http://pkg.jenkins-ci.org/redhat/jenkin...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1235, "all_permissive": false }
ansible_role
Mahadtkxel/Assignment_3_tkxel
dce0d28c8d272a1c5101eea3514b2188518a9d5a
0
ansible_files/roles/change_nginx_port
8,043
[ "no_license" ]
[ { "path": "ansible_files/roles/change_nginx_port/vars/main.yaml", "content": "nginx_port: 81", "license_type": "no_license", "detected_licenses": [], "size_bytes": 14 }, { "path": "ansible_files/roles/change_nginx_port/tasks/main.yaml", "content": "---\n- name: Update Nginx configura...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 209, "all_permissive": false }
ansible_role
Mahadtkxel/Assignment_3_tkxel
dce0d28c8d272a1c5101eea3514b2188518a9d5a
0
ansible_files/roles/docker
8,043
[ "no_license" ]
[ { "path": "ansible_files/roles/docker/tasks/main.yaml", "content": "- name: Install prerequisites for Docker\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n state: present\n update_cache: yes\n\n- name: Adding Docker GPG key\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 842, "all_permissive": false }
ansible_role
Mahadtkxel/Assignment_3_tkxel
dce0d28c8d272a1c5101eea3514b2188518a9d5a
0
ansible_files/roles/docker_compose
8,043
[ "no_license" ]
[ { "path": "ansible_files/roles/docker_compose/defaults/main.yaml", "content": "---\ndocker_compose_version: \"v2.32.1\" ", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "ansible_files/roles/docker_compose/tasks/main.yaml", "content": "- name: Do...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 436, "all_permissive": false }