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
ceardigo/525-infragil
fb7030f5a4fdb8e92a253c9e773456ed4af9c40e
0
ansible/roles/docker
7,279
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n\n- name: baixar script\n get_url:\n url: https://get.docker.com\n dest: /tmp/docker.sh \n\n\n- name: executar script\n script: /tmp/docker.sh\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 14...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 149, "all_permissive": false }
ansible_role
ceardigo/525-infragil
fb7030f5a4fdb8e92a253c9e773456ed4af9c40e
0
ansible/roles/initial
7,279
[ "no_license" ]
[ { "path": "ansible/roles/initial/tasks/user.yaml", "content": "---\n\n- name: Criando os usuarios padroes\n user:\n name: \"{{item.nome}}\"\n password: <PASSWORD>}}\"\n home: \"/srv/{{item.nome}}\"\n with_items:\n - {nome: carlos, senha: <PASSWORD>/' }\n - {nome: developer, senha: <PASSWORD...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 445, "all_permissive": false }
ansible_role
ceardigo/525-infragil
fb7030f5a4fdb8e92a253c9e773456ed4af9c40e
0
ansible/roles/puppet
7,279
[ "no_license" ]
[ { "path": "ansible/roles/puppet/tasks/puppet_repositorios.yaml", "content": "---\n- name: Adicionando repositorio centos7\n yum:\n name: https://yum.puppet.com/puppet5/puppet5-release-el-7.noarch.rpm\n\n when: \n - ansible_distribution_major_version == \"7\"\n - ansible_distribution == \"CentOS\"...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 750, "all_permissive": false }
ansible_role
ceardigo/525-infragil
fb7030f5a4fdb8e92a253c9e773456ed4af9c40e
0
ansible/roles/web
7,279
[ "no_license" ]
[ { "path": "ansible/roles/web/vars/debian.yaml", "content": "---\n\npacote_apache: apache2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "ansible/roles/web/vars/centos.yaml", "content": "---\n\npacote_apache: httpd\n", "license_type": "no...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1120, "all_permissive": false }
ansible_role
ceardigo/525-infragil
fb7030f5a4fdb8e92a253c9e773456ed4af9c40e
0
ansible/roles/web2
7,279
[ "no_license" ]
[ { "path": "ansible/roles/web2/vars/main.yml", "content": "---\napache_centos: httpd\napache_debian: apache2\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 }, { "path": "ansible/roles/web2/handlers/main.yml", "content": "---\n\n- name: start apache centos\...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 666, "all_permissive": false }
ansible_role
tiernap/ansible-mysql-replicated
ee689f5f83a83fe6f44a540a14224a8777d798cb
0
roles/mysql-replicated
7,279
[ "no_license" ]
[ { "path": "roles/mysql-replicated/tasks/trusty.yml", "content": "---\n# we do NOT want this playbook to run twice.\n# It is only for running on fresh servers. Once installed it wont touch anything again\n\n#\n# Deploy mysql\n#\n\n- name: stop if mysql_replicated_server_id is not defined\n fail: msg=\"Error...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5899, "all_permissive": false }
ansible_role
rafaelmotadasilva/vagrant-ansible-nginx
68c602ce56f22141062ad18d03a4fa47d30a1a28
1
roles/nginx
7,279
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Atualizar o servidor\n apt:\n update_cache: yes\n\n- name: Instalar o Nginx\n apt:\n name: nginx\n state: present\n\n- name: Copiar site para o servidor Nginx\n copy:\n src: website/\n dest: /var/www/html/\n owner: www-dat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 379, "all_permissive": false }
ansible_role
areguera/terraform-aws-ssm
e78935fd7ec691e09ef961d9e165d43121d1f8af
9
examples/simple/ansible/roles/application-httpd
7,279
[ "permissive" ]
[ { "path": "examples/simple/ansible/roles/application-httpd/handlers/main.yml", "content": "---\n- name: reload_httpd\n ansible.builtin.service:\n name: httpd\n state: reloaded\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 88 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 635, "all_permissive": true }
ansible_role
areguera/terraform-aws-ssm
e78935fd7ec691e09ef961d9e165d43121d1f8af
9
examples/simple/ansible/roles/application-httpd-tests
7,279
[ "permissive" ]
[ { "path": "examples/simple/ansible/roles/application-httpd-tests/tasks/main.yml", "content": "---\n- name: The httpd.service returns the expected message\n ansible.builtin.uri:\n url: http://localhost/\n return_content: true\n register: this\n failed_when: \"'Hello, World!' not in this.content\"\n"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 204, "all_permissive": true }
ansible_role
phnmnl/MTBLS233-POP-Swift
8376384c01f870eff90d23455f99c7d5b477bfe7
0
roles/setup-kubenow
7,279
[ "permissive" ]
[ { "path": "roles/setup-kubenow/templates/openstack.tfvars.j2", "content": "cluster_prefix = \"{{cluster_prefix}}\"\nKuberNow_image = \"phenomenal-mtbls233\"\nssh_key = \"{{playbook_dir}}/vre.key.pub\"\nkubeadm_token = \"{{kubeadm_token}}\"\nfloating_ip_pool = \"{{floating_ip_pool}}\"\nexternal_network_uuid ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 798, "all_permissive": true }
ansible_role
unamem/learning-ansible
b9b288459447042eea74d33061afad3f5af89952
0
node_exporter/roles/increase_disk
7,279
[ "no_license" ]
[ { "path": "node_exporter/roles/increase_disk/tasks/main.yml", "content": "- name: extend the partition of volume\n command: growpart /dev/xvda 1\n #command: sudo growpart /dev/nvme0n1 1\n when: \n - ansible_facts['distribution'] == \"Amazon\"\n - ansible_facts['mounts'][0]['device'] == \"/dev/xvda1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 951, "all_permissive": false }
ansible_role
unamem/learning-ansible
b9b288459447042eea74d33061afad3f5af89952
0
node_exporter/roles/node_exporter
7,279
[ "no_license" ]
[ { "path": "node_exporter/roles/node_exporter/vars/main.yml", "content": "---\nserviceName: node_exporter\nuserID: node_exporter\ngroupID: node_exporter\nexec_command: /usr/local/bin/node_exporter\nversion: 1.0.1\nurl: \"http://127.0.0.1:9100\"\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1469, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/ami_ware
7,279
[ "no_license" ]
[ { "path": "roles/ami_ware/tasks/main.yml", "content": "- name: Update and upgrade apt packages\n become: true\n apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time: 86400 # One day\n\n- name: apt packages\n apt:\n name: '{{ apt_packages }}'\n\n- name: pip packages\n pip:\n name: '{...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 352, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/django
7,279
[ "no_license" ]
[ { "path": "roles/django/defaults/main.yml", "content": "django_allowed_hosts: '*'\ndjango_media_url: '/media/'\nemail:\n hostname: smtp.gmail.com\n username: '{{ mail.name }}'\n password: '{{ <PASSWORD> }}'\n port: \"{{ mail.port | default('465') }}\"\n uses_tls: \"{{ mail.uses_tls | default('False') }...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3013, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/django_create_admin
7,279
[ "no_license" ]
[ { "path": "roles/django_create_admin/tasks/main.yml", "content": "- name: template adduser script\n template:\n src: adduser.j2\n dest: '{{ virtualenv_folder }}/adduser-to-django.sh'\n owner: '{{ system_user.name }}'\n group: '{{ system_user.name }}'\n mode: 0511\n\n- name: create django adm...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 694, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/django_loaddata
7,279
[ "no_license" ]
[ { "path": "roles/django_loaddata/tasks/main.yml", "content": "- name: django loaddata\n django_manage:\n command: loaddata\n app_path: '{{ virtualenv_folder }}'\n virtualenv: '{{ virtualenv_folder }}'\n fixtures: '{{ fixtures }}'", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 175, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/django_uninstall_package
7,279
[ "no_license" ]
[ { "path": "roles/django_uninstall_package/tasks/main.yml", "content": "- name: pip uninstall package\n become: True\n become_user: '{{ system_user.name }}'\n pip:\n name: '{{ pip_django_package_name }}'\n virtualenv: '{{ virtualenv_folder }}'\n state: absent", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/django_update_rsync
7,279
[ "no_license" ]
[ { "path": "roles/django_update_rsync/tasks/main.yml", "content": "- name: clone bitbucket repo\n git:\n repo: '{{ git.url }}'\n dest: '{{ tmp.git }}'\n version: '{{ git.version }}'\n accept_hostkey: yes\n key_file: '{{ git.key_file }}'\n delegate_to: localhost\n\n- name: wheel directory\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1644, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/figlet
7,279
[ "no_license" ]
[ { "path": "roles/figlet/tasks/main.yml", "content": "- name: remove non-needed files\n file:\n path: /etc/update-motd.d/{{ item }}\n state: absent\n with_items:\n - 10-help-text\n - 51-cloudguest\n\n- name: set servername in motd\n lineinfile:\n path: /etc/update-motd.d/00-header\n rege...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 295, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/https
7,279
[ "no_license" ]
[ { "path": "roles/https/defaults/main.yml", "content": "certbot:\n domain: '{{ domain }}'\n email: '{{ mail.name }}'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "roles/https/handlers/main.yml", "content": "- name: reload_nginx\n service:\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3190, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/nginx
7,279
[ "no_license" ]
[ { "path": "roles/nginx/defaults/main.yml", "content": "public_port: 8000\ncustom_nginx_config_params: ''\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 }, { "path": "roles/nginx/tasks/main.yml", "content": "- name: apt install nginx\n apt:\n name: ngi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1734, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/nginx_default_site
7,279
[ "no_license" ]
[ { "path": "roles/nginx_default_site/tasks/main.yml", "content": "- name: template default index.html\n template:\n src: index.html\n dest: /var/www/\n owner: root\n group: root\n mode: 0644\n\n- name: copy image for default index.html\n copy:\n src: calidae.png\n dest: /var/www/\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 664, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/pg_config
7,279
[ "no_license" ]
[ { "path": "roles/pg_config/tasks/main.yml", "content": "- name: create superuser\n postgresql_user:\n name: '{{ db.admin_user }}'\n password: '{{ <PASSWORD> }}'\n role_attr_flags: SUPERUSER\n become: yes\n become_user: postgres\n\n- name: close connections in template1\n environment:\n PGHOS...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2573, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/pg_server
7,279
[ "no_license" ]
[ { "path": "roles/pg_server/tasks/main.yml", "content": "- name: stop postgres\n service:\n name: postgresql\n state: stopped\n register: command_result\n failed_when: \"command_result is failed and ('find' not in command_result.msg and 'found' not in command_result.msg)\"\n\n- name: apt install pos...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1085, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/rsyslog
7,279
[ "no_license" ]
[ { "path": "roles/rsyslog/defaults/main.yml", "content": "rsyslog_template: rsyslog.j2", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/rsyslog/tasks/main.yml", "content": "- name: apt install rsyslog\n apt:\n name: rsyslog\n update_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 771, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/system_user
7,279
[ "no_license" ]
[ { "path": "roles/system_user/tasks/main.yml", "content": "- name: create system user\n user:\n name: '{{ system_user.name }}'\n shell: /bin/bash\n createhome: True\n home: '{{ system_user.home }}'", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 146, "all_permissive": false }
ansible_role
oalfonso-o/ansible_django
10b9c7c12dfd93bbdaf1b4b007c5ebfdd2747e83
0
roles/uwsgi
7,279
[ "no_license" ]
[ { "path": "roles/uwsgi/defaults/main.yml", "content": "concurrent_processes: 5\napt_packages:\n - python3\n - python-dev\n - uwsgi-emperor\n - uwsgi-plugin-python\n - uwsgi-plugin-python3", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }, { "path": "roles/...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1567, "all_permissive": false }
ansible_role
jay-rapolu/ansible-roles-roboshop
3712756a9e556d4467b428cca31f16233b6164c5
0
roles/catalogue
7,279
[ "no_license" ]
[ { "path": "roles/catalogue/tasks/main.yaml", "content": "- name: app setup\n include_role:\n name: \"common\"\n tasks_from: app-setup.yaml\n\n- name: nodejs setup\n include_role:\n name: \"common\"\n tasks_from: nodejs-setup.yaml\n\n- name: create mongo repo\n ansible.builtin.copy:\n src: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 926, "all_permissive": false }
ansible_role
jay-rapolu/ansible-roles-roboshop
3712756a9e556d4467b428cca31f16233b6164c5
0
roles/common
7,279
[ "no_license" ]
[ { "path": "roles/common/tasks/app-setup.yaml", "content": "- name: create app directory\n ansible.builtin.file:\n path: /app\n state: directory\n\n- name: create system user\n ansible.builtin.user:\n name: roboshop\n shell: /sbin/nologin\n home: /app\n create_home: true\n system: true...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1592, "all_permissive": false }
ansible_role
jay-rapolu/ansible-roles-roboshop
3712756a9e556d4467b428cca31f16233b6164c5
0
roles/payment
7,279
[ "no_license" ]
[ { "path": "roles/payment/tasks/main.yaml", "content": "- name: app setup\n ansible.builtin.import_role:\n name: \"common\"\n tasks_from: app-setup.yaml\n\n- name: python setup\n ansible.builtin.import_role:\n name: \"common\"\n tasks_from: python-setup.yaml\n\n- name: systemd setup\n ansible....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 976, "all_permissive": false }
ansible_role
jay-rapolu/ansible-roles-roboshop
3712756a9e556d4467b428cca31f16233b6164c5
0
roles/shipping
7,279
[ "no_license" ]
[ { "path": "roles/shipping/vars/main.yaml", "content": "CART_HOST: cart.jayachandrarapolu.site\nDB_HOST: mysql.jayachandrarapolu.site\nDB_USER: root\nDB_PASSWORD: <PASSWORD>", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 }, { "path": "roles/shipping/tasks/main....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1096, "all_permissive": false }
ansible_role
jay-rapolu/ansible-roles-roboshop
3712756a9e556d4467b428cca31f16233b6164c5
0
roles/user
7,279
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yaml", "content": "- name: app_setup\n ansible.builtin.import_role:\n name: \"common\"\n tasks_from: app-setup.yaml\n\n- name: node_setup\n ansible.builtin.import_role:\n name: \"common\"\n tasks_from: nodejs-setup.yaml\n\n- name: systemd_setup\n ansible.built...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 395, "all_permissive": false }
ansible_role
danericp/development
25810d92352d45843ba1b9ca2986f216b1f4afe6
0
Ansible/roles/debian_admin
7,279
[ "no_license" ]
[ { "path": "Ansible/roles/debian_admin/tasks/main.yml", "content": "---\n# Ansible Module apt https://docs.ansible.com/ansible/2.9/modules/apt_module.html#apt-module\n- name: Run the equivalent of \"apt-get update\" as a separate step\n tags: linux,debian,ubuntu,apt,update\n ansible.builtin.apt:\n updat...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 2733, "all_permissive": false }
ansible_role
danericp/development
25810d92352d45843ba1b9ca2986f216b1f4afe6
0
Ansible/roles/redhat_admin
7,279
[ "no_license" ]
[ { "path": "Ansible/roles/redhat_admin/templates/node_exporter.service.j2", "content": "[Unit]\nDescription=Node Exporter\nAfter=network.target\n \n[Service]\nUser=eric\nGroup=eric\nType=simple\nExecStart=/usr/local/bin/node_exporter\n \n[Install]\nWantedBy=multi-user.target", "license_type": "no_license...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3422, "all_permissive": false }
ansible_role
danericp/development
25810d92352d45843ba1b9ca2986f216b1f4afe6
0
Ansible/roles/windows_admin
7,279
[ "no_license" ]
[ { "path": "Ansible/roles/windows_admin/tasks/main.yml", "content": "---\n# Ansible Guide https://docs.ansible.com/ansible/latest/collections/chocolatey/chocolatey/win_chocolatey_module.html\n# Chocolatey Packages https://community.chocolatey.org/packages\n- name: \"Ensure Chocolatey itself is installed, usi...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2859, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/common
7,279
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n# tasks file for common\n\n\n- name: install common packages\n package:\n name: \"{{item}}\"\n state: installed\n with_items:\n - unzip \n - git \n become: yes\n \n- name: Ensure Facts Directory Exists\n file:\n path: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 315, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/create_user
7,279
[ "no_license" ]
[ { "path": "roles/create_user/tasks/main.yml", "content": "---\n# tasks file for create_user\n\n- name: Create users\n user: \n name: \"{{username}}\" \n uid: \"{{user[username].uid}}\"\n \n\n\n\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 136, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/deploy_tomcat
7,279
[ "no_license" ]
[ { "path": "roles/deploy_tomcat/handlers/main.yml", "content": "---\n# handlers file for deploy_tomcat", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/deploy_tomcat/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 2211, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/java
7,279
[ "no_license" ]
[ { "path": "roles/java/defaults/main.yml", "content": "---\n# defaults file for java\n\njava_vers: \"java-1.8.0-openjdk\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 }, { "path": "roles/java/handlers/main.yml", "content": "---\n# handlers file for jav...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 751, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/jenkins
7,279
[ "no_license" ]
[ { "path": "roles/jenkins/defaults/main.yml", "content": "---\n# defaults file for jenkins\n\njenkins_user: jenkins\njenkins_group: jenkins\njenkins_home: /opt/jenkins\njenkins_xms: -Xms1000m \njenkins_xmx: -Xmx1500m\n\njava_home: /usr/bin\njava_version: java-1.8.0-openjdk\n\n\nnginx_version: 1.12.2\nnginx_p...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1277, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/nexus
7,279
[ "no_license" ]
[ { "path": "roles/nexus/tasks/main.yml", "content": "---\n# tasks file for nexus\n\n- name: Ensure that nexus_home exist\n file: \n path: \"{{nexus_home}}\"\n state: directory \n\n- name: Extract nexus\n unarchive:\n src: \"{{link}}\"\n dest: \"{{nexus_home}}\"\n remote_src: yes \n\n- ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1616, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/nginx
7,279
[ "no_license" ]
[ { "path": "roles/nginx/handlers/main.yml", "content": "---\n# handlers file for nginx\n\n- name: save details\n copy:\n content: >\n {\n \"version\": \"{{ nginx_version.stdout }}\", \n \"installed\": \"{{ ansible_date_time.iso8601 }}\"\n }\n dest: /etc/ansible/facts....
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 941, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/psql
7,279
[ "no_license" ]
[ { "path": "roles/psql/defaults/main.yml", "content": "---\n# defaults file for psql\npsql_user: postgres\nlink: https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-x86_64/pgdg-centos11-11-2.noarch.rpm\ninit: /usr/pgsql-11/bin/postgresql-11-setup initdb\n\n\npsql_conf: pg_hba.conf\npsql_data_path:...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1855, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/sonar
7,279
[ "no_license" ]
[ { "path": "roles/sonar/defaults/main.yml", "content": "---\n# defaults file for sonar\n\nsonar_user: sonar\nsonar_group: sonar\nlink: https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-7.7.zip\nsonarqube_home: /opt/sonarqube-7.7\nsonarqube_conf: /opt/sonarqube-7.7/conf\nxms: Xms1000m\nxmx: Xm...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2099, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/tomcat
7,279
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/main.yml", "content": "---\n# tasks file for tomcat\n\n- name: extract tomcat\n unarchive:\n src: \"{{link}}\"\n dest: /opt\n remote_src: yes \n become: yes\n\n- name: Deploy Systemd File tomcat.service\n template:\n src: tomcat.service.j2\n dest: /etc/syste...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 3341, "all_permissive": false }
ansible_role
XxXantivirusXxX/Ansible_day3
ea22d7384d986f1cf72edc92d0635025b60ce04c
0
roles/tomcat_deploy
7,279
[ "no_license" ]
[ { "path": "roles/tomcat_deploy/defaults/main.yml", "content": "---\n# defaults file for tomcat_deploy\n\ncreator: acharviakou\ndeploy_user: deployer\ndeploy_password: <PASSWORD>\n\ntomcat_app: http://192.168.56.203/acharviakou \nfailed_condition: \"'helloworld' not in new_app.content\"\nbuild: \"93\"\npath_...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1705, "all_permissive": false }
ansible_role
zeronegit/project-third
75a5e486fee9c9eb5caebf2ec2c374dd22492c84
0
.circleci/ansible/roles/configure-server
7,279
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/configure-server/tasks/main.yml", "content": "- name: upgrade apt\n become: true\n apt:\n upgrade: yes\n\n- name: install npm\n become: true\n apt:\n name: [\"npm\"]\n state: latest\n update_cache: yes\n\n- name: install nodejs 12\n become: true\n shell: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 483, "all_permissive": false }
ansible_role
zeronegit/project-third
75a5e486fee9c9eb5caebf2ec2c374dd22492c84
0
.circleci/ansible/roles/deploy
7,279
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "- name: copy backend files to server\n become: true \n copy:\n src: ~/project/artifact.tar.gz\n dest: /home/ubuntu/artifact.tar.gz\n\n- name: extract and run mp2\n shell: |\n cd /home/ubuntu\n tar -xzvf artifact.tar.gz -C ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 306, "all_permissive": false }
ansible_role
retr0h/tribe
ff4fe8cfc9f137cdd74d7b603e10ff7eabd3892c
0
vagrant/roles/retr0h.etcd
7,279
[ "no_license" ]
[ { "path": "vagrant/roles/retr0h.etcd/templates/etc/init/etcd.conf.j2", "content": "description \"etcd service registry\"\n\nstart on runlevel [2345]\nstop on runlevel [!2345]\n\nrespawn\n\n{% if etcd_cluster -%}\n{% macro etcd_peers() -%}\n{% for host in groups[etcd_peers_group] -%}\n {% if loop.last -%}\...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 5665, "all_permissive": false }
ansible_role
retr0h/tribe
ff4fe8cfc9f137cdd74d7b603e10ff7eabd3892c
0
vagrant/roles/tribe
7,279
[ "no_license" ]
[ { "path": "vagrant/roles/tribe/templates/etc/init/tribe-heartbeat.conf.j2", "content": "description \"tribe heartbeat service\"\n\nstart on started tribe-agent\nstop on stopping tribe-agent\n\nrespawn\n\nscript\n {{ tribe_venv_dir }}/bin/tribe --ping\n sleep {{ tribe_heartbeat_sleep }}\nend script\n", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1820, "all_permissive": false }
ansible_role
digitalake/ansible-terraform-aws-django
50b862312f9de1c6f07567cbf8ad15820e984014
0
ansible/roles/django-deploy
7,279
[ "no_license" ]
[ { "path": "ansible/roles/django-deploy/tasks/registry-login.yml", "content": "---\n- name: Log into DockerHub.\n community.docker.docker_login:\n username: \"{{ DOCKER_REGISTRY_USER }}\"\n password: \"{{ <PASSWORD> }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes"...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 2325, "all_permissive": false }
ansible_role
digitalake/ansible-terraform-aws-django
50b862312f9de1c6f07567cbf8ad15820e984014
0
ansible/roles/docker-spray
7,279
[ "no_license" ]
[ { "path": "ansible/roles/docker-spray/tasks/install-compose.yml", "content": "- name: Install Docker Compose.\n get_url:\n url: \"{{ docker_compose_url }}\"\n dest: \"{{ docker_compose_path }}\"\n mode: 0755", "license_type": "no_license", "detected_licenses": [], "size_bytes": 131 }...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1559, "all_permissive": false }
ansible_role
digitalake/ansible-terraform-aws-django
50b862312f9de1c6f07567cbf8ad15820e984014
0
ansible/roles/postgres-spray
7,279
[ "no_license" ]
[ { "path": "ansible/roles/postgres-spray/tasks/packages.yml", "content": "---\n- name: Ensure gpg is installed\n apt:\n name: gpg\n state: present\n\n- name: Ensure acl is installed\n apt:\n name: acl\n state: present\n\n- name: Ensure pip is installed\n apt:\n name: python3-pip\n state:...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2641, "all_permissive": false }
ansible_role
rhmk/ansible-cli-container
83d1007454ea3276fd350d53b067de9a5f5b996c
2
examples/ansible-files/roles/update-chrony
7,280
[ "permissive" ]
[ { "path": "examples/ansible-files/roles/update-chrony/tasks/main.yml", "content": "---\n# tasks file for update-chrony\n- name: Copy chrony configuration file\n template:\n src: chrony.conf.j2\n dest: /etc/chrony.conf\n notify:\n - restart_chronyd", "license_type": "permissive", "detected...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 459, "all_permissive": true }
ansible_role
lel99999/dev_GoCDRH7
9a0c45e11dc1a908f2c117002766cb2a80327634
0
roles/eod7
7,280
[ "no_license" ]
[ { "path": "roles/eod7/tasks/main.yaml", "content": "---\n- name: Install EOD dependencies\n become: yes\n become_method: sudo\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - openssl\n - openssl-devel\n# - abyssinica-fonts\n - tree\n - expect\n - libselinux-python\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 8124, "all_permissive": false }
ansible_role
lel99999/dev_GoCDRH7
9a0c45e11dc1a908f2c117002766cb2a80327634
0
roles/gocd_serverRH7.v17.10
7,280
[ "no_license" ]
[ { "path": "roles/gocd_serverRH7.v17.10/meta/main.yml", "content": "---\ndependencies:\n - role: openjdk1.8\n# - role: jdk\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "roles/gocd_serverRH7.v17.10/tasks/main.yml", "content": "# GOCD now use...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4615, "all_permissive": false }
ansible_role
lel99999/dev_GoCDRH7
9a0c45e11dc1a908f2c117002766cb2a80327634
0
roles/psql13-authnz
7,280
[ "no_license" ]
[ { "path": "roles/psql13-authnz/tasks/main.yml", "content": "- name: Install git\n yum:\n name: git\n state: present\n\n- name: Install dependencies\n yum:\n name: \"{{item}}\"\n state: present\n with_items:\n - virtualenv\n - python-devel\n - libevent-devel\n - gcc\n - gcc-c++\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 438, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/boot-rescue
7,280
[ "no_license" ]
[ { "path": "ansible/roles/boot-rescue/tasks/main.yml", "content": "---\n- include: hetzner.yml\n when: baremetal_provider == 'hetzner'\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 68 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 68, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/coreos
7,280
[ "no_license" ]
[ { "path": "ansible/roles/coreos/tasks/installed.yml", "content": "---\n- name: Dependencies\n apt:\n name: gawk\n update_cache: true\n state: present\n\n- name: Copy configuration\n copy:\n src: '{{ coreos_config_compiled }}'\n dest: '{{ coreos_config_path }}'\n tags:\n - coreos_config_co...
{ "task_files": 9, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 16, "total_bytes": 8015, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/coreos-etcd
7,280
[ "no_license" ]
[ { "path": "ansible/roles/coreos-etcd/tasks/tested.yml", "content": "---\n- name: Check etcd cluster-health\n shell: etcdctl cluster-health\n register: etcdctl_ch\n changed_when: \"etcdctl_ch.rc != 0\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 }, { "p...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5196, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/coreos-flannel
7,280
[ "no_license" ]
[ { "path": "ansible/roles/coreos-flannel/templates/50-network-config.conf.j2", "content": "[Unit]\nRequires=etcd{{ etcd_version }}.service etcd-waiter.service\nAfter=etcd{{ etcd_version }}.service etcd-waiter.service\nBefore=docker.service\n[Service]\nEnvironmentFile=/etc/environment\nExecStartPre=/usr/bin/e...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1736, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/coreos-k8s
7,280
[ "no_license" ]
[ { "path": "ansible/roles/coreos-k8s/templates/kube-apiserver-haproxy.service.j2", "content": "[Unit]\nDescription=Ha Proxy for kubernetes api server\nAfter=docker.service\nBefore=kubernetes-networking.target\n\n[Service]\nTimeoutStartSec=5m\nExecStartPre=-/usr/bin/docker kill haproxy\nExecStartPre=-/usr/bin...
{ "task_files": 7, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 18, "total_bytes": 17231, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/k8s-application
7,280
[ "no_license" ]
[ { "path": "ansible/roles/k8s-application/tasks/main.yml", "content": "---\n- name: Create target directory\n file:\n path: \"{{ k8s_application_target }}\"\n state: directory\n\n- name: Copy templates\n template:\n src: \"{{ item }}\"\n dest: \"{{ k8s_application_target }}/{{ item | basename }...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1136, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/k8s-glusterfs
7,280
[ "no_license" ]
[ { "path": "ansible/roles/k8s-glusterfs/templates/deploy-heketi-svc.yml", "content": "kind: Service\napiVersion: v1\nmetadata:\n name: deploy-heketi\n namespace: gluster\n labels:\n glusterfs: heketi-service\n deploy-heketi: support\n annotations:\n description: Exposes Heketi Service\nspec:\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5898, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/k8s-resource
7,280
[ "no_license" ]
[ { "path": "ansible/roles/k8s-resource/tasks/main.yml", "content": "---\n- name: check if resource is already exists\n command: kubectl get {{ k8s_resource_kind }} --namespace={{ k8s_resource_namespace|default(\"default\") }} --output=json --context={{ kube_cluster_name }}\n register: k8s_resource_kubectl_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 988, "all_permissive": false }
ansible_role
khusseini/ansible-coreos
b03fe2dddbcc5f2a5de379400ee953c9f41eef89
2
ansible/roles/kubectl
7,280
[ "no_license" ]
[ { "path": "ansible/roles/kubectl/tasks/main.yml", "content": "---\n\n- name: check kubectl\n stat:\n path: '{{ kubectl_path }}'\n register: kubectlst\n\n- name: ensure directory\n file:\n path: '{{ kubectl_path|dirname }}'\n state: directory\n\n- name: kubectl checksum\n local_action:\n mod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 856, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/activity_index
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/activity_index/files/activity_index.wsgi", "content": "#!/usr/bin/env python3\nimport sys\nimport logging\nimport activity_index_server\n\nlogging.basicConfig(stream=sys.stderr)\nfrom activity_index_server.__main__ import app as application\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3700, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/apache2
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/apache2/handlers/main.yml", "content": "---\n- name: \"Restart Apache\"\n service:\n name: \"{{ apache2.init_name }}\"\n state: restarted\n\n- name: \"Reload Apache\"\n service:\n name: \"{{ apache2.init_name }}\"\n state: reloaded\n", "license_t...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4206, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/apt_caching
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/apt_caching/defaults/main.yml", "content": "---\n\napt_caching_dir: \"{{ download_cache_dir }}/apt\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "services/ansible/roles/apt_caching/tasks/main.yml", "conten...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 869, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/assessment_ap
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/assessment_ap/templates/assessment-activity-provider-vhost.conf.j2", "content": "<VirtualHost *:{{ assessment_ap.port }}>\n\n DocumentRoot {{ assessment_ap.web_root }}\n\n ServerName {{ assessment_ap.server_name }}\n ServerPath \"{{ assessment_ap.server_path }}\"\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3625, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/cass
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/cass/templates/adapter.xapi.json.j2", "content": "{\n\t\"xapiEndpoint\":\"{{ cass.external_services.lrs.base_url }}/xapi/\",\n\t\"xapiHostName\":\"{{ cass.external_services.lrs.base_url }}/\",\n\t\"xapiAuth\":\"<KEY>\n\t\"enabled\":\"true\"\n}\n", "license_type": "no_li...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 7449, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/cass_data
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/cass_data/defaults/main.yml", "content": "---\n\ncass_data_defaults:\n init_cache_dir: \"{{ init_cache_dir | default('/var/cache/ansible') }}/cass_data\"\n base_url: \"http://localhost\"\n frameworks: []\n\n## Example Framework:\n#- name: \"My CASS Framework\"\n#...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2396, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/cass_worker
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/cass_worker/tasks/cass-worker-Debian.yml", "content": "---\n# Based on https://github.com/geerlingguy/ansible-for-devops/blob/master/nodejs/provisioning/playbook.yml\n\n- name: Install Forever (to run our Node.js app).\n npm:\n name: forever\n global: yes\n state:...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1707, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/configure_adl_launch_server
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/configure_adl_launch_server/templates/fluent-realm.json.j2", "content": "{\n \"realm\":\"fluent\",\n \"enabled\":true,\n \"sslRequired\":\"none\",\n \"displayName\":\"TLA Sign In\",\n \"displayNameHtml\":\"<h1 style=\\\"font-size: 40pt; font-weight: 400;\\\">TLA S...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 20333, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/content_host
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/content_host/tasks/main.yml", "content": "- name: \"Copy files to /var/www/content-host\"\n copy:\n src: \"/vagrant/content-host/\"\n dest: \"/var/www/content-host/\"\n mode: 0777\n\n# - name: \"Set files_to_keep variable\"\n# set_fact:\n# files_to_keep:\n# ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2711, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/create_users
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/create_users/defaults/main.yml", "content": "---\r\ncreate_users:\r\n users: {}\r\n\r\n_user_passhashes: {}\r\n\r\n # Example of input dictionary. See ansible docs for full list of \r\n # user1: # This field is passed in as the username.\r\n # password: \"<PASSWORD>\"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2846, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/discovery_service
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/discovery_service/tasks/main.yml", "content": "---\n\n- name: \"Initialize Discovery Service Configuration\"\n set_fact:\n discovery_service: \"{{ discovery_service_defaults | combine(discovery_service | default({}), recursive=True) }}\"\n\n- name: \"Debug Role Configur...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2420, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/django
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/django/tasks/django-Debian.yml", "content": "---\n- name: Install Pip\n apt: name=\"python-pip\" state=present update_cache=true cache_valid_time=3600\n\n- name: Install Django\n pip: name=\"django\"\n", "license_type": "no_license", "detected_licenses": [], "...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 200, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/evidence_mapper
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/evidence_mapper/templates/config.py.j2", "content": "REMOVE_CONSECUTIVE_ATTEMPTS = False\n\nACTIVITY_INDEX_ENDPOINT = \"{{ tla_config.activity_index.base_url }}\"\n\nSTUDY_ID = 'FLUENT_2018'\n\n\nclass CompetencyCounterConfig(object):\n class Types(object):\n ONLI...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 3855, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/fix_line_endings
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/fix_line_endings/tasks/main.yml", "content": "---\n\n- name: \"Identify Ansible Non-Binary Files\"\n connection: local\n become: false\n shell: |\n find {{ fix_line_endings.ansible_path }} -type f -exec sh -c \"file -i '{}' | grep -q 'charset=us-ascii'\" \\; -print\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 497, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/java
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/java/tasks/main.yml", "content": "---\n\n- name: \"Initialize Java Configuration\"\n tags: always\n set_fact:\n java: \"{{ java_defaults | combine(java | default({}), recursive=True) }}\"\n\n- name: \"Debug Role Configuration\"\n tags: always\n debug:\n msg: \"{{ ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3567, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/keycloak_config
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/keycloak_config/tasks/setup_realm.yml", "content": "---\n\n- name: \"Find Realm Name\"\n set_fact:\n _realm_def: \"{{ lookup('template', item) | from_json }}\"\n _max_users: 1000\n\n- name: \"Create Realm '{{ _realm_def.realm }}'\"\n uri:\n url: \"{{ keycloak_con...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 8471, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/keycloak_self_register
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/keycloak_self_register/defaults/main.yml", "content": "---\n\nkeycloak_self_register_defaults:\n base_url: \"http://{{ adl_server_hostname | default('localhost') }}:8080/auth\"\n admin: {}\n #username: \"\" # SET ME IN PLAYBOOK OR INVENTORY\n #password: \"\" # SET M...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 4080, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/learner_inferences
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/learner_inferences/templates/config.py.j2", "content": "\nfrom learner_inferences_server.store_clients import MongoLearnerStoreClient\n\n\nclass Config(object):\n DEBUG = True\n\n SERVICE_ENDPOINT = 'https://learner-inferences/learners'\n PORT = 8999\n\n # Param...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8203, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/learning_locker
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/learning_locker/templates/database.php.j2", "content": "<?php\n\nreturn [\n 'fetch' => PDO::FETCH_CLASS,\n 'default' => '{{ learning_locker.config.database.default }}',\n 'connections' => [\n{% for c in learning_locker.config.database.connections %}\n\t\t'{{ c }}' => [\n...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 14725, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/learning_locker_2.0
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/learning_locker_2.0/tasks/main.yml", "content": "---\n\n- name: Check that the provision success file exists\n stat:\n path: /var/log/LL_config_success.txt\n register: LL_stat_result\n\n- name: \"Initialize Learning Locker Configuration\"\n tags: always\n set_fact:\n...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 18497, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/log_stats
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/log_stats/defaults/main.yml", "content": "---\n\nlog_stats_defaults:\n\n script_src: \"log-stat\"\n script_dst: \"/usr/local/sbin/log-stat\"\n\n log_file: \"/var/log/vm_stats.log\"\n\n time: {}\n \n download_cache_dir: \"{{ download_cache_dir | default('/tmp') }}\"\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1422, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/lrs
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/lrs/templates/startlrs.sh.j2", "content": "#!/bin/sh\n\ncd {{ lrs.home | dirname }}\n. env/bin/activate\ncd {{ lrs.home }}\npython manage.py runserver {{ lrs.bind_address }}:{{ lrs.ports.redirect }}\n", "license_type": "no_license", "detected_licenses": [], "siz...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 8248, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/maven
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/maven/defaults/main.yml", "content": "---\n\nmaven_default_version: \"3.3.9\"\n\nmaven_defaults:\n dest: \"/usr/share\"\n folder_name: \"apache-maven-{{ maven_default_version }}\"\n version: \"{{ maven_default_version }}\"\n download_url: ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3011, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/mod_wsgi
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/mod_wsgi/handlers/main.yml", "content": "---\n\n- include: ../../apache/handlers/main.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "services/ansible/roles/mod_wsgi/tasks/main.yml", "content": "---\n\n- na...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 492, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/mongodb
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/mongodb/defaults/main.yml", "content": "---\n\nmongodb_defaults:\n package_name: \"mongodb-org\"\n version: \"3.4\"\n exe_path: \"/usr/bin/mongo\"\n\n addon_packages: []\n\n dbs: []\n\n conf_path: \"/etc/mongod.conf\"\n config:\n storage:\n dbPath: /var...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 6107, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/moodle
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/moodle/defaults/main.yml", "content": "---\n\nmoodle_defaults:\n data_dir: \"/opt/tla/moodle_data\"\n web_root: \"/var/www/moodle\"\n root_url: \"http://{{ default_hostname | default('localhost') }}\"\n port: 8090\n version: \"MOODLE_31_STABLE\"\n vhost...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 5470, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/moodle_data
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/moodle_data/defaults/main.yml", "content": "---\n\nmoodle:\n data_dir: \"/opt/tla/moodle_data\"\n web_root: \"/var/www/moodle\"\n root_url: \"http://{{ default_hostname | default('localhost') }}\"\n port: 8090\n version: \"MOODLE_31_STABLE\"\n vhost_con...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 15350, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/moodle_oidc
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/moodle_oidc/defaults/main.yml", "content": "---\n\nmoodle_oidc_defaults:\n download_url: \"https://moodle.org/plugins/download.php/11814/auth_oidc_moodle31_2016062000.zip\"\n #keycloak_well_known: \"/url/to/keycloak/realm/.well-known\"\n client_info_path: \"/tmp/moodle-k...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 7975, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/moodle_xapi
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/moodle_xapi/defaults/main.yml", "content": "---\n\nmoodle:\n data_dir: \"/opt/tla/moodle_data\"\n web_root: \"/var/www/moodle\"\n root_url: \"http://{{ default_hostname | default('localhost') }}\"\n port: 8090\n version: \"MOODLE_31_STABLE\"\n vhost_con...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4148, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/nginx
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/nginx/tasks/nginx-Debian.yml", "content": "---\n\n- name: \"Install NGINX\"\n apt:\n name: \"nginx={{ nginx.version }}\"\n state: present\n update_cache: \"{{ nginx.apt.update_cache }}\"\n cache_valid_time: \"{{ nginx.apt.cache_valid_time }}\"\n\n- name: \"Remo...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1802, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/nodejs
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/nodejs/tasks/main.yml", "content": "---\n\n# Add NodeJS APT Sources\n- name: \"Download Node.js Script to Add APT Sources & Keys\"\n get_url:\n url: \"https://deb.nodesource.com/setup_8.x\"\n dest: \"~/nodejs_setup.sh\"\n\n- name: \"Run Node.js Script to Add APT Sour...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 689, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/ntpd
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/ntpd/tasks/ntpd-Debian.yml", "content": "---\n\n- name: \"Install NTP Daemon\"\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: \"{{ ntpd.apt.update_cache }}\"\n cache_valid_time: \"{{ ntpd.apt.cache_valid_time }}\"\n with_items: \"{{ ntpd.d...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1139, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/php
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/php/tasks/main.yml", "content": "---\n\n- name: \"Initialize Platform-Specific PHP Configuration\"\n tags: always\n set_fact:\n php_platform_specific: \"{{ php_defaults | combine(_php_platform_specific_defaults[ansible_distribution][ansible_distribution_release] | defa...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1707, "all_permissive": false }
ansible_role
soartech/fluent
67604e54fdf22623d20ad4b00304c0cc8a02a71b
2
services/ansible/roles/postfix
7,280
[ "no_license" ]
[ { "path": "services/ansible/roles/postfix/tasks/postfix-Debian.yml", "content": "---\n\n- name: \"Install Postfix\"\n apt:\n name: \"{{ postfix.package_name }}\"\n state: present\n update_cache: true\n cache_valid_time: 3600\n\n- name: \"Install any Postfix Add-ons\"\n apt:\n name: \"...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1851, "all_permissive": false }