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
PacktPublishing/Mastering-Ansible-Third-Edition
8c355ec6695f057f409d45097b0a6c3d4c460a9e
54
Chapter10/example08/roles/microB
25
[ "no_license" ]
[ { "path": "Chapter10/example08/roles/microB/tasks/main.yaml", "content": "--- \n- name: install microB package \n debug: \n msg: \"This is installing B\" \n changed_when: true \n notify: restart microB\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 247, "all_permissive": false }
ansible_role
PacktPublishing/Mastering-Ansible-Third-Edition
8c355ec6695f057f409d45097b0a6c3d4c460a9e
54
Chapter11/example11/ansible/roles/cowsay
25
[ "no_license" ]
[ { "path": "Chapter11/example11/ansible/roles/cowsay/tasks/main.yml", "content": "---\n- name: install things \n raw: dnf install -y python-dnf \n\n- name: use local python\n set_fact:\n ansible_python_interpreter: /usr/bin/python\n\n- name: install things \n dnf: \n name: ['nginx', 'cowsay']\n\n- n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 382, "all_permissive": false }
ansible_role
timello/vagrant-kubernetes
f144de91e284253c8ca5240cdb604ba4c92b10b4
0
roles/common
25
[ "no_license" ]
[ { "path": "roles/common/tasks/selinux.yml", "content": "---\n- name: Disable SELinux\n register: selinux_state\n selinux:\n state: disabled\n\n- name: Reboot to apply SELinux state\n reboot: reboot_timeout=3600\n when: selinux_state.changed \n", "license_type": "no_license", "detected_license...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 816, "all_permissive": false }
ansible_role
timello/vagrant-kubernetes
f144de91e284253c8ca5240cdb604ba4c92b10b4
0
roles/docker
25
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Ensure group docker exists\n group:\n name: docker\n state: present\n\n- name: Install Docker\n yum:\n name: docker\n state: present\n\n- name: Ensure docker started \n service: name=docker state=started enabled=yes\n", "li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 232, "all_permissive": false }
ansible_role
timello/vagrant-kubernetes
f144de91e284253c8ca5240cdb604ba4c92b10b4
0
roles/kubernetes
25
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/install.yml", "content": "---\n- name: Kube repo\n copy: src=files/kubernetes.repo dest=/etc/yum.repos.d/kubernetes.repo\n\n- name: Kube packages\n yum:\n name: \"{{ kube_packages }}\"\n state: present\n disable_excludes: kubernetes\n\n- name: Kubelet service ena...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3545, "all_permissive": false }
ansible_role
AntonD0MS/IACproject-AntonDoms
11ce9c1aaf9d2c88dbdae8e22f9696a4ea06bee0
0
roles/rocketchat
25
[ "no_license" ]
[ { "path": "roles/rocketchat/templates/docker-compose.yml.j2", "content": "version: '3.8'\r\n\r\nservices:\r\n mongo:\r\n image: {{ mongo_image }}\r\n restart: always\r\n container_name: mongo\r\n command: [\"mongod\", \"--replSet\", \"rs0\", \"--bind_ip_all\"]\r\n volumes:\r\n - {{ mong...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4151, "all_permissive": false }
ansible_role
malkarouri/devbase
15a8728b889799d26356a7ea06584d859abd0a58
0
roles/rkt
25
[ "no_license" ]
[ { "path": "roles/rkt/tasks/main.yml", "content": "---\n- name: Check if rkt exists\n stat: path=\"{{ ansible_env.HOME }}/rkt-v1.2.0/rkt\"\n register: rkt_executable\n- name: Download rkt\n get_url:\n args:\n url: https://github.com/coreos/rkt/releases/download/v1.2.0/rkt-v1.2.0.tar.gz\n dest: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 717, "all_permissive": false }
ansible_role
laddhoffman/ansible-test
780832ade3df9cd855bb0e5f3bfa5f4dc6bb6065
0
roles/role1
25
[ "no_license" ]
[ { "path": "roles/role1/tasks/main.yml", "content": "---\n# tasks file for role1\n\n- name: do nothing\n command: echo \"hi\"\n changed_when: false\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 90, "all_permissive": false }
ansible_role
EBiSC/ebisc_deployment
9818dc80ee9fd61acb37c358b65dfb614b2497ed
1
roles/common
25
[ "permissive" ]
[ { "path": "roles/common/tasks/proxy_setup.yml", "content": "- name: generic proxy setup\n block:\n - name: set proxy ENV\n template:\n src: proxy.sh.j2\n dest: /etc/profile.d/proxy.sh\n owner: root\n mode: 0644\n when: use_proxy|bool\n\n - name: remove proxy ENV\...
{ "task_files": 8, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 14, "total_bytes": 9218, "all_permissive": true }
ansible_role
EBiSC/ebisc_deployment
9818dc80ee9fd61acb37c358b65dfb614b2497ed
1
roles/ims
25
[ "permissive" ]
[ { "path": "roles/ims/templates/postgres/ims-postgres.service.env.j2", "content": "POSTGRESQL_USER={{ postgresql_user }}\nPOSTGRESQL_PASSWORD={{ <PASSWORD> }}\nPOSTGRESQL_DATABASE={{ postgresql_database }}\nPOSTGRESQL_ADMIN_PASSWORD={{ postgresql_admin_password }}\nhttp_proxy={{ proxy_env.http_proxy }}\nhttp...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 21, "total_bytes": 16596, "all_permissive": true }
ansible_role
EBiSC/ebisc_deployment
9818dc80ee9fd61acb37c358b65dfb614b2497ed
1
roles/mail
25
[ "permissive" ]
[ { "path": "roles/mail/templates/aliases.j2", "content": "# See man 5 aliases for format\npostmaster: root\n{{ ansible_user }}: root\nroot: {% for admin in server_admins %}{{ admin.mail }}{{ \",\" if not loop.last else \"\" }}{% endfor %}\n\n{% for user in users %}\n{{ user.name }}: {{ user.mail }}\n{% en...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 3454, "all_permissive": true }
ansible_role
EBiSC/ebisc_deployment
9818dc80ee9fd61acb37c358b65dfb614b2497ed
1
roles/nginx-proxy
25
[ "permissive" ]
[ { "path": "roles/nginx-proxy/tasks/main.yml", "content": "- name: create user\n user:\n name: \"{{ item }}\"\n system: yes\n create_home: no\n become: yes\n with_items:\n - \"{{ nginx_user }}\"\n\n- name: copy unit file\n become: yes\n template:\n dest: \"/etc/systemd/system/{{item}}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 8510, "all_permissive": true }
ansible_role
EBiSC/ebisc_deployment
9818dc80ee9fd61acb37c358b65dfb614b2497ed
1
roles/tracker
25
[ "permissive" ]
[ { "path": "roles/tracker/defaults/main.yml", "content": "mongo_user: mongodb\ndata_dir: /data01\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0" ], "size_bytes": 38 }, { "path": "roles/tracker/templates/mongodb.service.conf.j2", "content": "[Service]\nE...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5871, "all_permissive": true }
ansible_role
EBiSC/ebisc_deployment
9818dc80ee9fd61acb37c358b65dfb614b2497ed
1
roles/updates
25
[ "permissive" ]
[ { "path": "roles/updates/defaults/main.yml", "content": "updates_packages:\n - unattended-upgrades\n - mailutils # to send notification email\n - update-notifier-common # notify when reboot is needed (automatic dep now?)\n", "license_type": "permissive", "detected_licenses": [ "Apach...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 796, "all_permissive": true }
ansible_role
m-wynn/ansible-test-case
981f003599f30422c28b3175940df5c78af2cafd
0
roles/dep_one
20
[ "no_license" ]
[ { "path": "roles/dep_one/tasks/main.yml", "content": "---\n- name: Say hi\n debug: msg=\"I am in the dependency\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 57, "all_permissive": false }
ansible_role
m-wynn/ansible-test-case
981f003599f30422c28b3175940df5c78af2cafd
0
roles/test_one
20
[ "no_license" ]
[ { "path": "roles/test_one/tasks/main.yml", "content": "---\n- name: Say hi\n debug: msg=\"I am in task one\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 51, "all_permissive": false }
ansible_role
m-wynn/ansible-test-case
981f003599f30422c28b3175940df5c78af2cafd
0
roles/test_two
20
[ "no_license" ]
[ { "path": "roles/test_two/tasks/main.yml", "content": "---\n- name: Say hi\n debug: msg=\"I am in task two\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "roles/test_two/meta/main.yml", "content": "---\ndependencies:\n - { role: dep_one }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 91, "all_permissive": false }
ansible_role
ashsawh/vagrant
e9df7c42708819755b95002eb7d88038f282b919
0
ansible/roles/db
20
[ "no_license" ]
[ { "path": "ansible/roles/db/tasks/setup.yml", "content": "---\r\n\r\n- name: Install MySQL server\r\n apt: name=mysql-server update-cache=yes\r\n\r\n- name: Install Apache module for MySQL authentication\r\n apt: name=libapache2-mod-auth-mysql state=latest\r\n\r\n- name: Install MySQL module for PHP\r\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 292, "all_permissive": false }
ansible_role
PTSSpace/MANIansible
2b2b5bbc3e8e938ddb869da6ade151e56af3a595
3
roles/base
20
[ "no_license" ]
[ { "path": "roles/base/files/zshrc", "content": "# oh-my-zsh\nZSH_THEME=\"gianu\"\nZSH=$HOME/.oh-my-zsh\nplugins=(git jsontools sudo urltools)\nsource $ZSH/oh-my-zsh.sh\n\n# general shell config\nzstyle ':completion:*' special-dirs true\n\n# allow local modifications\nif [[ -a ~/.zshrc-local ]]; then\n\tsour...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1567, "all_permissive": false }
ansible_role
PTSSpace/MANIansible
2b2b5bbc3e8e938ddb869da6ade151e56af3a595
3
roles/motors
20
[ "no_license" ]
[ { "path": "roles/motors/tasks/main.yml", "content": "---\n- name: Install pca9685 package\n pip:\n name: adafruit-pca9685\n virtualenv: /home/ubuntu/catkin_ws\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 110, "all_permissive": false }
ansible_role
PTSSpace/MANIansible
2b2b5bbc3e8e938ddb869da6ade151e56af3a595
3
roles/ros
20
[ "no_license" ]
[ { "path": "roles/ros/tasks/main.yml", "content": "---\n- name: Install ROS ppa\n copy:\n src: ros-latest.list\n dest: /etc/apt/sources.list.d/ros-latest.list\n\n- name: Add ROS signing key\n apt_key:\n keyserver: keyserver.ubuntu.com\n id: <KEY>\n register: result\n until: result | success\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 979, "all_permissive": false }
ansible_role
PTSSpace/MANIansible
2b2b5bbc3e8e938ddb869da6ade151e56af3a595
3
roles/sensors
20
[ "no_license" ]
[ { "path": "roles/sensors/tasks/main.yml", "content": "---\n- name: Ensure user is part of plugdev group\n user:\n name=ubuntu\n groups=plugdev\n append=yes\n\n- name: Ensure udev rules.d exists\n file:\n path: /etc/udev/rules.d\n state: directory\n\n- name: Upload pico udev rule\n copy:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 537, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/common
20
[ "no_license" ]
[ { "path": "roles/common/defaults/main.yml", "content": "---\n\n# can also set to `dist` for dist-upgrade:\napt_upgrade_type: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 }, { "path": "roles/common/templates/sudoers.j2", "content": "{{ remote_usernam...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1201, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/docker
20
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n\n# Translated from:\n# https://docs.docker.com/install/linux/docker-ce/ubuntu/#set-up-the-repository\n#\n- name: apt install pre-requisite packages\n apt: name={{ item }} state=present\n loop: \"{{ prerequisites }}\"\n\n- name: add Docker GPG key ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 688, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/dotfiles
20
[ "no_license" ]
[ { "path": "roles/dotfiles/tasks/main.yml", "content": "---\n\n- name: personalize shell\n git: dest=\"{{ ansible_env.HOME }}/dotfiles\"\n accept_hostkey=yes\n repo=\"<EMAIL>:bdelliott/dotfiles.git\"\n\n- name: setup dotfiles\n command: ./setup\n args:\n chdir: dotfiles/\n", "license_ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 220, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/keysetup
20
[ "no_license" ]
[ { "path": "roles/keysetup/tasks/main.yml", "content": "---\n\n- file: path=\"{{ ansible_env.HOME }}/.ssh\"\n state=directory\n mode=0700\n\n- name: authorize personal key\n copy: src=\"{{ local_home }}/.ssh/id_rsa.pub\"\n dest=\"{{ ansible_env.HOME }}/.ssh/authorized_keys\"\n mo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 246, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/kubernetes
20
[ "no_license" ]
[ { "path": "roles/kubernetes/tasks/main.yml", "content": "---\n\n- apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present\n\n- apt_repository:\n repo: deb http://apt.kubernetes.io/ kubernetes-xenial main\n\n- name: Install Kubernetes packages\n apt:\n name: \"{{ i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 346, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/python
20
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n\n- name: update pip itself to newest version\n pip: name=pip state=latest\n \n- name: install common pip packages\n pip: name=\"{{ item }}\" state=present\n loop: \"{{ packages }}\"\n", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 230, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/rpco-user-config
20
[ "no_license" ]
[ { "path": "roles/rpco-user-config/tasks/main.yml", "content": "---\n\n- name: create openstack user config yaml\n template:\n src: openstack_user_config.yml.tmpl\n dest: /etc/openstack_deploy/openstack_user_config.yml\n mode: 0644\n owner: root\n group: root\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 204, "all_permissive": false }
ansible_role
bdelliott/ansible-goodies
59764dda91dd25c3ac3d8488afd0122c256155e8
0
roles/rpco-vxlan-interface
20
[ "no_license" ]
[ { "path": "roles/rpco-vxlan-interface/tasks/main.yml", "content": "---\n\n- name: create vxlan tunnel endpoint\n template:\n src: vxlan-interface.tmpl\n dest: /etc/network/interfaces.d/{{ vxlan_interface }}\n mode: 0644\n owner: root\n group: root\n register: vxlan_intf\n\n- name: source th...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1149, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_ansible_galaxy_repo
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_ansible_galaxy_repo/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_config_dir is set\n set_fact: offline_confi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4883, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_cassandra_static_content
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_cassandra_static_content/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_config_dir is set\n set_fact: offline_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7018, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_debian_repo
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_debian_repo/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n tags: update_permissions\n\n- name: ensure offline_delivery_dir is set\n s...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 6089, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_dns
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_dns/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_delivery_dir is set\n set_fact: offline_delivery_dir='/home...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2053, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_docker_repo
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_docker_repo/files/registry/images.sh", "content": "#!/usr/bin/env bash\n\nset -e\n\nSCRIPT_DIR=\"$( cd \"$( dirname \"${BASH_SOURCE[0]}\" )\" && pwd )\"\n\nregistry_name=\"localhost\"\n\nimages=$(cat $SCRIPT_DIR/list_of_docker_images.txt)\nquay=$(cat $SCRIPT_DIR/list_of_do...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 13708, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_helm2_repo
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_helm2_repo/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_config_dir is set\n set_fact: offline_config_dir='/h...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5594, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_helm3_repo
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_helm3_repo/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n tags: update_helm_charts\n\n- name: ensure offline_config_dir is set\n set_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 5690, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_https
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_https/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_delivery_dir is set\n set_fact: offline_delivery_dir='/ho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2132, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_kubernetes_static_content
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_kubernetes_static_content/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_config_dir is set\n set_fact: offline...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6399, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_minio_static_content
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_minio_static_content/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_config_dir is set\n set_fact: offline_conf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 4521, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_ntp
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_ntp/tasks/main.yml", "content": "---\n- name: ensure offline_delivery_dir is set\n set_fact: offline_delivery_dir='/home/ubuntu/offline_delivery/'\n when: offline_delivery_dir is undefined\n\n- name: ensure assethost_ip is given.\n fail:\n msg: 'assethost_ip must be ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1500, "all_permissive": false }
ansible_role
sshyran/wire-server-deploy-networkless
9ffad3d7d998284388de26e5d868bc80998a6910
0
vpc/ansible/roles/serve_poetry_repo
20
[ "no_license" ]
[ { "path": "vpc/ansible/roles/serve_poetry_repo/tasks/main.yml", "content": "---\n- name: ensure offline_content_dir is set\n set_fact: offline_content_dir='/home/ubuntu/offline_content/'\n when: offline_content_dir is undefined\n\n- name: ensure offline_config_dir is set\n set_fact: offline_config_dir='/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 7477, "all_permissive": false }
ansible_role
tscalf/hands-on-ansible
9ffadfe233881ceab3129927c0d87bbe98d3276f
0
exercise5/roles/dbserver
20
[ "no_license" ]
[ { "path": "exercise5/roles/dbserver/tasks/main.yml", "content": "---\n- name: Ensure Mysql-server is installed\n yum: name=mysql-server state=present\n\n- name: Ensure Mysqld is running and enabled\n service: name=mysqld state=started enabled=yes\n", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 179, "all_permissive": false }
ansible_role
tscalf/hands-on-ansible
9ffadfe233881ceab3129927c0d87bbe98d3276f
0
exercise5/roles/server_common
20
[ "no_license" ]
[ { "path": "exercise5/roles/server_common/tasks/syslog.yml", "content": "---\n- name: Install rsyslog\n yum: name=rsyslog state=present\n\n- name: Start rsyslog\n service: name=rsyslog state=running\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 123 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 838, "all_permissive": false }
ansible_role
tscalf/hands-on-ansible
9ffadfe233881ceab3129927c0d87bbe98d3276f
0
exercise5/roles/webservers
20
[ "no_license" ]
[ { "path": "exercise5/roles/webservers/tasks/main.yml", "content": "---\n- name: Ensure HTTPD is installed\n yum: name=httpd state=present\n\n- name: Ensure HTTPD is running\n service: name=httpd state=started enabled=yes\n- name: Deploy HTTPD Config file\n template: src=httpd.j2 dest=/etc/httpd/conf/http...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 558, "all_permissive": false }
ansible_role
tscalf/hands-on-ansible
9ffadfe233881ceab3129927c0d87bbe98d3276f
0
monyog/roles/monyog
20
[ "no_license" ]
[ { "path": "monyog/roles/monyog/templates/MONyog.ini.j2", "content": "[GENERAL]\nPort={{ monyog_port }}\nPassword={{ <PASSWORD>}}\nData_path={{ monyog_Data_Path}}\nRegistration_name={{ monyog_registration_name }}\nKey={{ monyog_registration_key }}\nInstall_id={{ monyog_registration_install_id }}\nJSRuntime_s...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1458, "all_permissive": false }
ansible_role
teenooCH/macos-setup
3605ecc6213b9a8c9c3cb65c33d1b49cbac1d886
0
roles/git_repositories
20
[ "no_license" ]
[ { "path": "roles/git_repositories/README.md", "content": "git_repositories\n================\n\nInstall all configured git repositories.\n\nRequirements\n------------\n\nGit.\n\nRole Variables\n--------------\n\n - repositories\n - repository: \n git, SSH, or HTTP(S) protocol address of ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1659, "all_permissive": false }
ansible_role
teenooCH/macos-setup
3605ecc6213b9a8c9c3cb65c33d1b49cbac1d886
0
roles/homebrew
20
[ "no_license" ]
[ { "path": "roles/homebrew/tasks/install.yml", "content": "---\n- name: Temporarily disable the need for a sudo password\n ansible.builtin.lineinfile:\n path: /etc/sudoers\n state: present\n regexp: '^{{ ansible_user_id }} ALL='\n line: '{{ ansible_user_id }} ALL=(ALL) NOPASSWD: ALL'\n valida...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3658, "all_permissive": false }
ansible_role
teenooCH/macos-setup
3605ecc6213b9a8c9c3cb65c33d1b49cbac1d886
0
roles/macos_applications
20
[ "no_license" ]
[ { "path": "roles/macos_applications/README.md", "content": "macos_applications\n==================\n\nInstall Appstore Applications.\n\nRequirements\n------------\n\nmas application. A CLI for the Appstore.\n\nRole Variables\n--------------\n\nmacos_applications_apps\n\nDependencies\n------------\n\nhomebre...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1396, "all_permissive": false }
ansible_role
teenooCH/macos-setup
3605ecc6213b9a8c9c3cb65c33d1b49cbac1d886
0
roles/macos_components
20
[ "no_license" ]
[ { "path": "roles/macos_components/vars/main.yml", "content": "---\n# vars file for macos_components\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/macos_components/README.md", "content": "macos_components\n================\n\nThis role...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 793, "all_permissive": false }
ansible_role
teenooCH/macos-setup
3605ecc6213b9a8c9c3cb65c33d1b49cbac1d886
0
roles/macos_config
20
[ "no_license" ]
[ { "path": "roles/macos_config/README.md", "content": "macos_config\n============\n\nConfigure a macOs system.\n- templates\n- files\n\nRequirements\n------------\n\nNone.\n\nRole Variables\n--------------\n\n - macos_config_templates\n - source: \n Local path to a file to copy to the remote ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2030, "all_permissive": false }
ansible_role
gky360/devuntu
bbf8e8bcaf8eb0b551a71ebe39d6c75a699af8f2
0
provisioning/roles/anaconda
20
[ "no_license" ]
[ { "path": "provisioning/roles/anaconda/tasks/main.yml", "content": "- name: anaconda\n become: no\n\n # see also: https://github.com/shiraco/ansible_ipython_machineleaning_bootstrap_conda\n block:\n - name: install packages for pyenv\n become: yes\n apt: name={{ item }}\n with_items:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2914, "all_permissive": false }
ansible_role
gky360/devuntu
bbf8e8bcaf8eb0b551a71ebe39d6c75a699af8f2
0
provisioning/roles/japanese
20
[ "no_license" ]
[ { "path": "provisioning/roles/japanese/vars/main.yml", "content": "# The XKB keyboard model name.\nkeyboard_model: jp106\n# The XKB keyboard layout name.\nkeyboard_layout: jp\n# The XKB keyboard variant components.\nkeyboard_variant: 'OADG109A'\n# The XKB keyboard option components.\nkeyboard_options: ''\n#...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1440, "all_permissive": false }
ansible_role
gky360/devuntu
bbf8e8bcaf8eb0b551a71ebe39d6c75a699af8f2
0
provisioning/roles/pre
20
[ "no_license" ]
[ { "path": "provisioning/roles/pre/tasks/main.yml", "content": "- name: pre\n become: yes\n\n block:\n - name: apt-get update\n apt: update_cache=yes cache_valid_time=3600\n\n # - name: enable GUI\n # apt: name=ubuntu-desktop\n\n - name: install user-preferred packages\n apt: name={...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 436, "all_permissive": false }
ansible_role
gitLRD/ansible-udemy-course
7f494250e44b25f080e725bc170c7bdca3a33437
0
roles/apache
20
[ "no_license" ]
[ { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n - name: install apache2\n apt: name={{item}} state=present\n with_items:\n - apache2\n - libapache2-mod-wsgi\n\n - name: Enable apache\n service: name=apache2 state=started enabled=yes\n\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 676, "all_permissive": false }
ansible_role
gitLRD/ansible-udemy-course
7f494250e44b25f080e725bc170c7bdca3a33437
0
roles/database
20
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "---\n# tasks file for database\n - name: Install tools\n apt: name={{item}} state=present update_cache=yes\n with_items:\n - python-mysqldb\n\n - name: Install mysql-server\n apt: name=mysql-server state=present\n\n - name: Ensure service...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 896, "all_permissive": false }
ansible_role
gitLRD/ansible-udemy-course
7f494250e44b25f080e725bc170c7bdca3a33437
0
roles/demo-app-server
20
[ "no_license" ]
[ { "path": "roles/demo-app-server/tasks/main.yml", "content": "---\n# tasks file for demo-app-server\n - name: install apache2\n apt: name={{item}} state=present\n with_items:\n - apache2\n - libapache2-mod-wsgi \n - python-pip \n - python-virtualenv \n - pytho...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1016, "all_permissive": false }
ansible_role
gitLRD/ansible-udemy-course
7f494250e44b25f080e725bc170c7bdca3a33437
0
roles/nginx
20
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n# tasks file for nginx\n - name: Install tools\n apt: name={{item}} state=present\n with_items:\n - python-httplib2\n\n - name: Install nginx\n apt: name=nginx state=present update_cache=yes\n\n - name: Configure Nginx 2...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 771, "all_permissive": false }
ansible_role
nag-iit/Ansible
03aca2ba8f208a14348c7bdf2db0561f5f9be47d
1
Jenkins/roles/aws.configure
20
[ "no_license" ]
[ { "path": "Jenkins/roles/aws.configure/tasks/main.yml", "content": "---\n - name: AWS Configure - set region to us-east-1\n become_user: jenkins\n command: aws configure set default.region us-east-1\n args:\n chdir: ~jenkins\n\n - name: AWS Condifure - set default output to JSON\n become...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 334, "all_permissive": false }
ansible_role
nag-iit/Ansible
03aca2ba8f208a14348c7bdf2db0561f5f9be47d
1
Jenkins/roles/gitHttpsConfig
20
[ "no_license" ]
[ { "path": "Jenkins/roles/gitHttpsConfig/tasks/main.yml", "content": "---\n - name: git config - codecommit credential helper\n become_user: jenkins\n command: git config --global credential.helper '!aws codecommit credential-helper $@'\n\n - name: git config codecommit use HTTPS set to true\n bec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 543, "all_permissive": false }
ansible_role
nag-iit/Ansible
03aca2ba8f208a14348c7bdf2db0561f5f9be47d
1
Jenkins/roles/jenkins.slave
20
[ "no_license" ]
[ { "path": "Jenkins/roles/jenkins.slave/tasks/main.yml", "content": "---\n - name: Jenkins-Slave Create user Jenkins\n become: true\n user: name=jenkins comment=\"Jenkins slave user\" home=${jenkins_home} shell=/bin/bash\n\n - name: Create .ssh folder\n file: path=${jenkins_home}/.ssh state=direct...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 484, "all_permissive": false }
ansible_role
nag-iit/Ansible
03aca2ba8f208a14348c7bdf2db0561f5f9be47d
1
Jenkins/roles/swarm.slave
20
[ "no_license" ]
[ { "path": "Jenkins/roles/swarm.slave/tasks/main.yml", "content": "---\n - name: download swarm-client-1.10-jar-with-dependencies.jar \n become_user: jenkins\n get_url: url=http://repo.jenkins-ci.org/releases/org/jenkins-ci/plugins/swarm-client/1.10/swarm-client-1.10-jar-with-dependencies.jar dest=/ho...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 900, "all_permissive": false }
ansible_role
nag-iit/Ansible
03aca2ba8f208a14348c7bdf2db0561f5f9be47d
1
nginx/roles/nginx
20
[ "no_license" ]
[ { "path": "nginx/roles/nginx/templates/jenkins.conf.j2", "content": "server {\n listen 80;\n# server_name ec2-52-63-169-195.ap-southeast-2.compute.amazonaws.com;\n# return 301 https://$server_name$request_uri;\n return 301 https://$host$request_uri;\n}\n\ns...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1718, "all_permissive": false }
ansible_role
nag-iit/Ansible
03aca2ba8f208a14348c7bdf2db0561f5f9be47d
1
nginx/roles/selfsignedcerts
20
[ "no_license" ]
[ { "path": "nginx/roles/selfsignedcerts/tasks/main.yml", "content": " - name: Create '{{ ssl_dir }}' directory for certificates\n become: true\n file: path='{{ ssl_dir }}' state=directory mode=0755\n\n - name: Create self signed certificate\n become: true\n command: >\n openssl genrsa -out...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 767, "all_permissive": false }
ansible_role
dobry33/sf_test
afad4ef87051c588a589ee458a2b547c836ba1f8
0
roles/vsftpd
20
[ "no_license" ]
[ { "path": "roles/vsftpd/tasks/main.yml", "content": "---\n# tasks file for vsftpd\n- name: install vsftpd\n apt:\n name: vsftpd\n update_cache: yes\n state: present\n\n- name: edit anonymous enabled\n lineinfile:\n path: /etc/vsftpd.conf\n regexp: 'anonymous_enable='\n insertafter: '#ano...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 674, "all_permissive": false }
ansible_role
rokmc756/VMware-DSM
426495770fa1d79651d6a7ecdd639c618457d504
0
roles/agent
29
[ "no_license" ]
[ { "path": "roles/agent/tasks/uninstall.yml", "content": "---\n#\n- name: Gather only virtual machines registered\n vmware_vm_info:\n hostname: '{{ vcenter.hostname }}'\n username: '{{ vcenter.username }}'\n password: '{{ <PASSWORD> }}'\n vm_type: vm\n validate_certs: 'no'\n delegate_to: loc...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 8962, "all_permissive": false }
ansible_role
rokmc756/VMware-DSM
426495770fa1d79651d6a7ecdd639c618457d504
0
roles/minio
29
[ "no_license" ]
[ { "path": "roles/minio/tasks/main.yml", "content": "---\n# Define import tasks according to tags option to install or uninstall minio s3 object storage in Red Hat / CentOS / Rocky Linux\n#\n# for now fail if it's not a Red Hat based system\n- name: Check OS ( GPDB )\n fail: msg=\"Not a Red Hat based system...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2957, "all_permissive": false }
ansible_role
rokmc756/VMware-DSM
426495770fa1d79651d6a7ecdd639c618457d504
0
roles/provider
29
[ "no_license" ]
[ { "path": "roles/provider/tasks/upgrade.yml", "content": "- debug: meg={{ \"Let's upgrade\" }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/provider/tasks/install.yml", "content": "---\n#\n- name: Gather only virtual machines registe...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 8829, "all_permissive": false }
ansible_role
rokmc756/VMware-DSM
426495770fa1d79651d6a7ecdd639c618457d504
0
roles/vcenter
29
[ "no_license" ]
[ { "path": "roles/vcenter/tasks/delete-users.yml", "content": "---\n#\n- name: Gather a domain user info of the vsphere.local domain\n community.vmware.vcenter_domain_user_group_info:\n hostname: \"{{ vcenter.hostname }}\"\n username: \"{{ vcenter.username }}\"\n password: \"{{ <PASSWORD> }}\"\n ...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 25500, "all_permissive": false }
ansible_role
funkymonkey5150/directhiretokenworkers-queue-server-client
3a48c13605cabb73c84384430c81f5a48eca064d
1
ci-scripts/roles/backend-update
29
[ "no_license" ]
[ { "path": "ci-scripts/roles/backend-update/tasks/main.yml", "content": "---\n# tasks file for backend-update\n- name: Delete backend dir\n file:\n path: '{{ backend_bin }}'\n state: absent\n\n- name: Create backend dir\n file:\n path: '{{ backend_bin }}'\n state: directory\n recurse: yes\n\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1925, "all_permissive": false }
ansible_role
andrew-klassen/hope_matters
c0df10b4043c9502ad134696db5c3e363c75273f
0
ansible/roles/webapp
29
[ "no_license" ]
[ { "path": "ansible/roles/webapp/tasks/main.yml", "content": "---\n\n\n- name: (deb) package setup\n block:\n\n - apt_repository:\n repo: ppa:ondrej/php\n\n - name: (deb) update repositories cache\n apt:\n update_cache: yes\n\n - name: (deb) install dependencies\n apt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 16154, "all_permissive": false }
ansible_role
gins0n/ansible-old
fc05fb99146db74561ecdd0bb888fbc3895d64f3
0
roles/ansible-master
29
[ "no_license" ]
[ { "path": "roles/ansible-master/tasks/main.yml", "content": "---\n- name: Ensure ansible user exists\n user:\n name: ansible\n shell: /bin/bash\n groups: wheel\n append: yes\n create_home: yes\n\n- name: Generate SSH key pair for ansible user\n openssh_keypair:\n path: /home/ansible/.ssh...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 542, "all_permissive": false }
ansible_role
zendad/filebeat-ansible-role
a3e30509c6ff294a0b4609d3f0ccb3bedab160e6
0
roles/filebeat
29
[ "no_license" ]
[ { "path": "roles/filebeat/tasks/main.yml", "content": "---\n- name: Ensure dependency is installed (Ubuntu).\n apt: name=apt-transport-https state=present\n\n- name: Add Elasticsearch apt key.\n apt_key:\n url: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n\n- name: Add Filebe...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1974, "all_permissive": false }
ansible_role
smiledt/ansible-nginx-config
9785f5ab2d54b81f0c847a3159a9fc2d5e72ed4b
0
roles/nginx-config
29
[ "no_license" ]
[ { "path": "roles/nginx-config/templates/organizr-serverauth.conf.j2", "content": "auth_request /auth-{{ site_item.value.org_level }};\nlocation ~ /auth-(.*) {\n proxy_pass http://{{ organizr_ip }}:{{ organizr_port }}/api/v2/auth?group=$1;\n proxy_pass_request_body off;\n proxy_set_header Content-Le...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 7149, "all_permissive": false }
ansible_role
abaelhe/ScrapyCluster
93a0bd069fe005963b120719c0da9636f24cf289
0
ansible/roles/common
29
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Install apt-get packages\n apt:\n pkg: \"{{ item }}\"\n update_cache: yes\n state: latest\n cache_valid_time: 600\n with_items:\n - python-lxml\n - build-essential\n - libssl-dev\n - libffi-dev\n - python-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 274, "all_permissive": false }
ansible_role
hatoh/setup_mac
37fef35bee25dafc171e400a7914cd230c17a1cb
0
ansible/roles/homebrew
29
[ "no_license" ]
[ { "path": "ansible/roles/homebrew/tasks/main.yml", "content": "---\n- name: install brew packages\n homebrew:\n name={{ item.name }}\n state={{ item.state | default('latest') }}\n with_items:\n - \"{{ brew_packages }}\"", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2881, "all_permissive": false }
ansible_role
hatoh/setup_mac
37fef35bee25dafc171e400a7914cd230c17a1cb
0
ansible/roles/homebrew-cask
29
[ "no_license" ]
[ { "path": "ansible/roles/homebrew-cask/tasks/main.yml", "content": "---\n- name: install homebrew cask packages\n homebrew_cask:\n name={{ item.name }}\n state={{ item.state | default('installed') }}\n with_items:\n - \"{{ brew_cask_packages }}\"", "license_type": "no_license", "detected_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 588, "all_permissive": false }
ansible_role
doubtingben/do-kube
01fbcb32b051bfb875b5825ec8a15216aaeb60dc
0
ansible/roles/docker-etcd
29
[ "no_license" ]
[ { "path": "ansible/roles/docker-etcd/tasks/main.yml", "content": "---\n\n- name: Start etcd container\n docker:\n name: \"etcd-{{ ansible_hostname }}\"\n image: \"quay.io/coreos/etcd:v{{ ETCDVERSION }}\"\n state: reloaded\n ports:\n - \"4001:4001\"\n - \"2380:2380\"\n - \"2379:2379\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1266, "all_permissive": false }
ansible_role
doubtingben/do-kube
01fbcb32b051bfb875b5825ec8a15216aaeb60dc
0
ansible/roles/docker-firewall
29
[ "no_license" ]
[ { "path": "ansible/roles/docker-firewall/tasks/main.yml", "content": "---\n\n- name: Install pre-reqs\n apt: name={{ item }} state=installed\n with_items:\n - ufw\n register: preReqsInstalled\n\n- name: Allow ssh\n ufw: rule=allow port=22\n\n- name: Allow etcd hosts to talk to each other\n ufw: rule...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 719, "all_permissive": false }
ansible_role
doubtingben/do-kube
01fbcb32b051bfb875b5825ec8a15216aaeb60dc
0
ansible/roles/docker-host-jessie
29
[ "no_license" ]
[ { "path": "ansible/roles/docker-host-jessie/tasks/main.yml", "content": "---\n\n- name: Add docker apt repo key\n apt_key: keyserver=p80.pool.sks-keyservers.net id=58118E89F3A912897C070ADBF76221572C52609D state=present\n register: repoKeyAdded\n\n- name: Add docker apt repo source\n copy: src=docker.list...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1718, "all_permissive": false }
ansible_role
doubtingben/do-kube
01fbcb32b051bfb875b5825ec8a15216aaeb60dc
0
ansible/roles/docker-kubelet
29
[ "no_license" ]
[ { "path": "ansible/roles/docker-kubelet/tasks/main.yml", "content": "---\n- name: Start kubelet container\n docker:\n name: kubelet\n image: gcr.io/google_containers/hyperkube-amd64:v{{ K8S_VERSION }}\n volumes:\n - \"/:/rootfs:ro\"\n - \"/sys:/sys:ro\"\n - \"/var/lib/docker/:/var/lib/doc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 688, "all_permissive": false }
ansible_role
camptocamp/terraform-instance-exoscale
f3bcff147bc6c9b522cfb3edbf93450aa10a6717
0
ansible-data/roles/common
29
[ "no_license" ]
[ { "path": "ansible-data/roles/common/tasks/main.yml", "content": "- name: List physical network interfaces\n command: find /sys/class/net -type l -not -lname '*virtual*' -printf '%f\\n'\n register: physical_interfaces\n\n- name: setup additional nic cloudinit config\n copy:\n dest: /etc/cloud/cloud.cf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 743, "all_permissive": false }
ansible_role
KekJaJ/banorte_pruebas
38153afae0739b497b98a1701a225144a903828c
0
banorte_api/roles/tickets_vunerabilidades
26
[ "no_license" ]
[ { "path": "banorte_api/roles/tickets_vunerabilidades/tasks/main.yml", "content": "---\n\n- name: call playbook\n include_tasks: api_quay_get_sha.yml\n \n- name: scrip\n script:\n executable: python3.10\n cmd: roles/tickets_vunerabilidades/scripts/post_servicenow.py\n ", "license_type": "no_l...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1882, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/alternc
26
[ "no_license" ]
[ { "path": "roles/alternc/tasks/nginx-setup.yml", "content": "---\n- name: Create Panel vhost\n template:\n src: etc-nginx-sites-available-SERVER.conf.j2\n dest: /etc/nginx/sites-available/{{ inventory_hostname }}.conf\n mode: 0444\n notify: nginx reload\n\n- name: Enable Panel vhost\n file:\n ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 4645, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/apache
26
[ "no_license" ]
[ { "path": "roles/apache/handlers/main.yml", "content": "---\n\n- name : restart apache2\n listen : \"restart apache2\"\n service:\n name: apache2\n state: restarted\n \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 }, { "path": "roles/apache/tasks/m...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 2231, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/es-backups
26
[ "no_license" ]
[ { "path": "roles/es-backups/files/210-prune-elasticsearch-backups-manuel", "content": "#!/usr/bin/python\n#\n# 2017-12-01 <NAME>\n# Prune ElasticSearch backups\n# - older than 7 days,\n# - while keeping at least 5 successful backups.\n\nimport requests\nimport json\nimport datetime\nimport sys\n\nDEBUG ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3597, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/github
26
[ "no_license" ]
[ { "path": "roles/github/defaults/main.yml", "content": "---\ngithub_state_dir: /var/cache/ansible-github\n\n# Derived variables\n_github_api_get_releases: https://api.github.com/repos/{{ github_repository }}/releases\n_github_state_file: '{{ github_state_dir }}/{{ github_repository | replace(\"/\", \"__\") ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2985, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/keepalived
26
[ "no_license" ]
[ { "path": "roles/keepalived/tasks/vip.yml", "content": "---\n\n- name: \"template keepalived.conf for master\"\n when: ip.master in ansible_all_ipv4_addresses\n blockinfile:\n dest: /etc/keepalived/keepalived.conf\n block: \"{{ lookup('template', 'keepalived_master.conf') }}\"\n marker: \"# {mark...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2269, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/minio-server
26
[ "no_license" ]
[ { "path": "roles/minio-server/tasks/main.yml", "content": "---\n- name: create minio group\n group:\n name: minio\n system: yes\n\n- name: create minio user\n user:\n name: minio\n comment: \"Minio server\"\n system: yes\n group: minio\n home: /srv/minio\n shell: /usr/sbin/nologin\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 907, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/mysql
26
[ "no_license" ]
[ { "path": "roles/mysql/tasks/debian.yml", "content": "\n- name: Mysql | installing\n apt: name= state=present\n with_items:\n - mysql-server\n - mysql-client\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "roles/mysql/README.txt", "c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 709, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/mysql_replication
26
[ "no_license" ]
[ { "path": "roles/mysql_replication/templates/99_server-id.cnf", "content": "[mysqld]\nserver-id\t= {{ serverid }}\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/mysql_replication/README.txt", "content": "# thibault 06 09 2019\n\n#ATT...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2517, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/nginx
26
[ "no_license" ]
[ { "path": "roles/nginx/tasks/certs.yml", "content": "---\n\n- name: \"Install python-apt package for loading facts\"\n shell: '/usr/bin/apt install -y python-apt'\n\n- name: \"Load packages facts\"\n package_facts:\n manager: apt\n\n- name: \"Ensure Nginx has restarted\"\n service:\n name: 'nginx'\...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 6239, "all_permissive": false }
ansible_role
octopuce/ansible
6864b36578ee78513eb431fe0996d56c1d480795
0
roles/turnserver
26
[ "no_license" ]
[ { "path": "roles/turnserver/tasks/coturn.yml", "content": "---\n- name: Check Variables\n when: coturn_secret is not defined\n fail:\n msg: >-\n coturn_secret is not defined. Please add it to your host_vars or\n on the command line with -e coturn_server=<value>\n\n- name: coturn | Install pac...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1893, "all_permissive": false }
ansible_role
jondos/jondobrowser-build
d1d44c718452d76b1a0f2b63b333636a06a59306
4
tools/ansible/roles/mta
26
[ "no_license" ]
[ { "path": "tools/ansible/roles/mta/tasks/main.yml", "content": "---\n\n- name: Install dma (DragonFly Mail Agent)\n apt:\n name: dma\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 92, "all_permissive": false }
ansible_role
akuma5157/ztcs
019d7c4060965c022a42e5f6b3d688181fcc537e
0
q1/roles/nginx
26
[ "permissive" ]
[ { "path": "q1/roles/nginx/defaults/main.yml", "content": "---\n# defaults file for nginx\n\nserver_port: 8080\n", "license_type": "permissive", "detected_licenses": [ "Unlicense" ], "size_bytes": 49 }, { "path": "q1/roles/nginx/tasks/main.yml", "content": "---\n#\n# Install...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 815, "all_permissive": true }
ansible_role
radzhome/ansible-ec2-demo
0765fdcd184a6852c40a07dc2415bcb45b5eca27
0
roles/base_setup
26
[ "no_license" ]
[ { "path": "roles/base_setup/handlers/main.yml", "content": "---\n- name: update timezone\n command: dpkg-reconfigure --frontend noninteractive tzdata\n\n- name: output locale\n debug:\n msg: \"Attention, {{ locale }} will be available after the server reboots\"\n\n- name: restart nginx\n action: servi...
{ "task_files": 8, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 4351, "all_permissive": false }
ansible_role
radzhome/ansible-ec2-demo
0765fdcd184a6852c40a07dc2415bcb45b5eca27
0
roles/ec2_creation
26
[ "no_license" ]
[ { "path": "roles/ec2_creation/tasks/elastic_ip.yml", "content": "---\n- name: associate new elastic IPs with the instance\n ec2_eip: \"instance_id={{ item }} region={{ aws_defaults.aws_region }}\"\n with_items: ec2_info.instance_ids\n register: elastic_ip\n\n- name: Output the IP\n debug: msg=\"The elas...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3524, "all_permissive": false }
ansible_role
radzhome/ansible-ec2-demo
0765fdcd184a6852c40a07dc2415bcb45b5eca27
0
roles/mount_vols
26
[ "no_license" ]
[ { "path": "roles/mount_vols/tasks/main.yml", "content": "---\n- include: create_roles.yml\n- include: make_fs.yml\n#- include: mount_vols.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "roles/mount_vols/tasks/stop_services.yml", "content": ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2230, "all_permissive": false }
ansible_role
radzhome/ansible-ec2-demo
0765fdcd184a6852c40a07dc2415bcb45b5eca27
0
roles/system_setup
26
[ "no_license" ]
[ { "path": "roles/system_setup/tasks/host.yml", "content": "---\n# Todo: hostname ? is domainname\n- name: update hostname\n hostname: name=(( project }}.{{ site_name }}.trapeze.com\n #hostname: name='ip-172-31-38-24'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 156 ...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 3844, "all_permissive": false }
ansible_role
fordse3/Samedits
4e8eef853e01ed7130bbaaa5eccf91b9db15c6b8
0
provisioning/roles/geerlingguy.php-versions
26
[ "no_license" ]
[ { "path": "provisioning/roles/geerlingguy.php-versions/vars/RedHat.yml", "content": "---\nphp_tideways_module_path: \"/usr/lib64/php{{ php_version }}/modules\"\nphp_uploadprogress_module_path: \"/usr/lib64/php{{ php_version }}/modules\"\nphp_xdebug_module_path: \"/usr/lib64/php{{ php_version }}/modules\"\np...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 676, "all_permissive": false }