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
cloud-native-toolkit/ansible-aws-infra-openshift
5c7388e7f58551bafa662e091ed6a7163abbe6f6
0
roles/standard
43
[ "no_license" ]
[ { "path": "roles/standard/tasks/std-cidr.yaml", "content": "---\n\n- name: Add VPC CIDR Fact to Inventory or use existing\n set_fact:\n inventory: \"{{inventory | combine({'cidrs':{'vpc':vpc_cidr}}, recursive=True)}}\"\n vars:\n vpc_cidr: \"{{inventory.vpc.cidr if(inventory.vpc.cidr is defined) else...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 15027, "all_permissive": false }
ansible_role
cloud-native-toolkit/ansible-aws-infra-openshift
5c7388e7f58551bafa662e091ed6a7163abbe6f6
0
roles/validate_prereq
43
[ "no_license" ]
[ { "path": "roles/validate_prereq/tasks/validate-access.yaml", "content": "---\n\n- name: Clear variables\n set_fact:\n response: []\n rosa: []\n response_default: []\n response_nondefault: []\n\n- name: Query for ROSA CLI access (default region)\n shell: |\n set timeout 300\n\n {{rosa_pa...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3166, "all_permissive": false }
ansible_role
cloud-native-toolkit/ansible-aws-infra-openshift
5c7388e7f58551bafa662e091ed6a7163abbe6f6
0
roles/vpc_networking
43
[ "no_license" ]
[ { "path": "roles/vpc_networking/tasks/mgmt-rtbs.yaml", "content": "---\n\n- name: Clear variables\n set_fact:\n privateRTBs: []\n rtbList: []\n\n# Private route tables\n\n- name: Create list of private route tables to create\n set_fact:\n privateRTBs: \"{{privateRTBs | default([]) + [{'name':name...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 20798, "all_permissive": false }
ansible_role
cloud-native-toolkit/ansible-aws-infra-openshift
5c7388e7f58551bafa662e091ed6a7163abbe6f6
0
roles/wkld_vpc
43
[ "no_license" ]
[ { "path": "roles/wkld_vpc/tasks/wkld-cidr.yaml", "content": "---\n\n- name: Add VPC CIDR Fact to Inventory or use existing\n set_fact:\n inventory: \"{{inventory | combine({'wkld':{'cidrs':{'vpc':vpcCIDR}}}, recursive=True)}}\"\n vars:\n vpcCIDR: \"{{inventory.wkld.cidrs.vpc if(inventory.wkld.cidrs....
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2851, "all_permissive": false }
ansible_role
cloud-native-toolkit/ansible-aws-infra-openshift
5c7388e7f58551bafa662e091ed6a7163abbe6f6
0
roles/workload_rosa
43
[ "no_license" ]
[ { "path": "roles/workload_rosa/tasks/main.yaml", "content": "---\n\n- name: Clear variables\n set_fact:\n wkldCluster: []\n\n- name: Define cluster name\n set_fact:\n wkldCluster: \"{{wkldCluster | default({}) | combine({'Name':resourceGroup|lower+'-'+workload|lower})}}\"\n\n- name: Determine if clu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2398, "all_permissive": false }
ansible_role
ptisserand/minecraft-server-setup
fa11a8105074ca36db8417ab9a86dbf0b2bebb2a
0
ansible/roles/common
43
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "- name: Create groups\n group:\n name: \"{{ USER_GROUP }}\"\n become: yes\n\n- name: Create users\n user:\n name: \"{{ item }}\"\n groups: \"{{ USER_GROUP }}\"\n append: yes\n shell: /bin/bash\n with_items: \"{{ USER_NAME }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 385, "all_permissive": false }
ansible_role
ptisserand/minecraft-server-setup
fa11a8105074ca36db8417ab9a86dbf0b2bebb2a
0
ansible/roles/docker
43
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "- name: \"APT - Add Docker GPG key\"\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n become: yes\n\n- name: \"APT - Add Docker repository\"\n apt_repository:\n repo: \"deb [arch=amd64] https://download...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 855, "all_permissive": false }
ansible_role
ptisserand/minecraft-server-setup
fa11a8105074ca36db8417ab9a86dbf0b2bebb2a
0
ansible/roles/minecraft
43
[ "no_license" ]
[ { "path": "ansible/roles/minecraft/tasks/main.yml", "content": "- name: Include minecraft version specific \n include_vars: minecraft-{{ MINECRAFT_VERSION }}.yml\n\n- name: Create minecraft data directory\n file:\n path: \"{{ MINECRAFT_DATA_DIR }}\"\n state: directory\n owner: \"{{ USER_NAME }}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 2693, "all_permissive": false }
ansible_role
MrPlant1/linux_server
f4531b5fabb56a3a46450f2c08dd14ae559863e6
0
ansible/wordpress_install/roles/php
43
[ "no_license" ]
[ { "path": "ansible/wordpress_install/roles/php/tasks/main.yml", "content": "---\n# tasks file for php\n- name: Install php extensions\n apt: name={{ item }} state=present\n become: yes\n with_items:\n - php8.1-gd\n - php8.1-ssh2\n", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 151, "all_permissive": false }
ansible_role
MrPlant1/linux_server
f4531b5fabb56a3a46450f2c08dd14ae559863e6
0
ansible/wordpress_install/roles/server
43
[ "no_license" ]
[ { "path": "ansible/wordpress_install/roles/server/tasks/main.yml", "content": "# tasks file for server\n- name: Update apt cache\n apt:\n update_cache: yes\n cache_valid_time: 3600\n become: yes\n\n- name: Install required software\n apt:\n name: \"{{ item }}\"\n state: present\n become: yes...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 347, "all_permissive": false }
ansible_role
MrPlant1/linux_server
f4531b5fabb56a3a46450f2c08dd14ae559863e6
0
ansible/wordpress_install/roles/wordpress
43
[ "no_license" ]
[ { "path": "ansible/wordpress_install/roles/wordpress/tasks/main.yml", "content": "# tasks file for wordpress\n- name: Download WordPress\n get_url:\n url: https://wordpress.org/latest.tar.gz\n dest: /tmp/wordpress.tar.gz\n validate_certs: no\n\n- name: Extract WordPress\n unarchive:\n src: /tm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1202, "all_permissive": false }
ansible_role
zhangzhenhao/ansible-playbook-sample
313fa748bc996891153a6524d68e14d0b1a21c3c
0
roles/vmware
43
[ "no_license" ]
[ { "path": "roles/vmware/tasks/main.yml", "content": "--- \n\n- name: Hello vmware and xls \n debug:\n msg: \"Hello vmware!\"\n\n- name: create directory for csv\n file:\n path: \"{{ csv_temp_path }}/{{ awx_job_id }}\"\n state: directory\n\n- name: create some test data\n copy:\n src: files/vm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 537, "all_permissive": false }
ansible_role
mflis/sentiment-analysis
359fe05fa09eecc81513b275dfa33b7b8e044974
0
ansible/roles/fetch
43
[ "no_license" ]
[ { "path": "ansible/roles/fetch/tasks/main.yml", "content": "- name: ensure local fetch directory exists\n local_action:\n module: file\n path: \"{{ fetch_dir }}\"\n state: directory\n\n- synchronize:\n src: ~/sentiment-analysis/results/\n dest: \"{{ fetch_dir }}\"\n mode: pull", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 307, "all_permissive": false }
ansible_role
mflis/sentiment-analysis
359fe05fa09eecc81513b275dfa33b7b8e044974
0
ansible/roles/launch
43
[ "no_license" ]
[ { "path": "ansible/roles/launch/tasks/main.yml", "content": "- name: Launch new instance\n ec2:\n spot_price: 0.90\n spot_wait_timeout: 600\n keypair: \"{{ aws_keypair}}\"\n group_id: \"{{aws_security_group}}\"\n instance_type: \"{{aws_instance_type}}\"\n aws_access_key: \"{{ec2_access_k...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 950, "all_permissive": false }
ansible_role
mflis/sentiment-analysis
359fe05fa09eecc81513b275dfa33b7b8e044974
0
ansible/roles/prepare
43
[ "no_license" ]
[ { "path": "ansible/roles/prepare/tasks/main.yml", "content": "- name: clone repo\n git:\n repo: \"https://mflis:{{ github_token }}@github.com/mflis/sentiment-analysis.git\"\n dest: ~/sentiment-analysis\n force: yes\n\n- name: create directories\n file:\n path: \"~/sentiment-analysis/{{item}}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1011, "all_permissive": false }
ansible_role
mflis/sentiment-analysis
359fe05fa09eecc81513b275dfa33b7b8e044974
0
ansible/roles/tensorflow
43
[ "no_license" ]
[ { "path": "ansible/roles/tensorflow/tasks/main.yml", "content": "- name: Run tensorboard\n command: tensorboard --logdir /home/ec2-user/sentiment-analysis/results/logs\n async: 50000\n poll: 0\n\n- name: Run tensorflow\n command: python3 src/{{type}}.py with {{type}}-config.yaml {{params}} --file_stor...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 365, "all_permissive": false }
ansible_role
mflis/sentiment-analysis
359fe05fa09eecc81513b275dfa33b7b8e044974
0
ansible/roles/terminate
43
[ "no_license" ]
[ { "path": "ansible/roles/terminate/tasks/main.yml", "content": "- name: Terminate instances that were previously launched\n ec2:\n region: \"{{ aws_region }}\"\n keypair: \"{{ aws_keypair }}\"\n state: 'absent'\n instance_ids: '{{ ec2.instance_ids }}'\n aws_access_key: \"{{ec2_access_key}}\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 273, "all_permissive": false }
ansible_role
Maslovss/AnsibleRancher
230828522715ed1263e27e978045c7fedef105b4
0
roles/run_openldap
43
[ "no_license" ]
[ { "path": "roles/run_openldap/tasks/main.yml", "content": "---\n- include_tasks: set_variables.yml\n\n- name: Start OpenLDAP container\n\n docker_container:\n name: \"{{ openldap_container_name }}\"\n image: \"{{ openldap_docker_image }}\"\n state: started\n ports:\n - \"{{ g_openldap_serv...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3560, "all_permissive": false }
ansible_role
Maslovss/AnsibleRancher
230828522715ed1263e27e978045c7fedef105b4
0
roles/run_rancher
43
[ "no_license" ]
[ { "path": "roles/run_rancher/templates/openldap.json.j2", "content": "{\r\n\"ldapConfig\":{\r\n\"actionLinks\":{\r\n\"testAndApply\":\"https://{{ rancher_server_ip }}/v3/openLdapConfigs/openldap?action=testAndApply\"\r\n},\r\n\"baseType\":\"authConfig\",\r\n\"connectionTimeout\":5000,\r\n\"enabled\":true,\r...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 7774, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_dconf
43
[ "no_license" ]
[ { "path": "roles/sys_dconf/meta/main.yml", "content": "---\ngalaxy_info:\n role_name: \"sys_dconf\"\n author: \"serdigital64\"\n description: \"Manage provisioning of the DConf service\"\n company: \"none\"\n license: \"Apache-2.0\"\n min_ansible_version: \"2.10\"\n platforms:\n - name: \"GenericL...
{ "task_files": 12, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 16, "total_bytes": 8953, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_fonts
43
[ "no_license" ]
[ { "path": "roles/sys_fonts/tasks/sys_fonts_prerequisite.yml", "content": "---\n- name: \"System / Fonts / Prepare package managers\"\n vars:\n sys_repository:\n prepare: true\n deploy: true\n setup: true\n provision: true\n sys_repository_managers:\n flatpak: false\n sna...
{ "task_files": 10, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 16, "total_bytes": 10025, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_gui_cinnamon
43
[ "no_license" ]
[ { "path": "roles/sys_gui_cinnamon/tasks/sys_gui_cinnamon_provision_desktop.yml", "content": "---\n- name: \"System / GUI / Cinnamon / Provision / Desktop / Create user configuration\"\n become: true\n ansible.builtin.template:\n backup: false\n follow: false\n force: true\n unsafe_writes: fals...
{ "task_files": 11, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 16, "total_bytes": 11390, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_kernel
43
[ "no_license" ]
[ { "path": "roles/sys_kernel/tasks/sys_kernel_initialize.yml", "content": "---\n- name: \"System / Kernel / Initialize / Check Platform compatibility ({{\n ansible_distribution + ansible_distribution_major_version }})\"\n ansible.builtin.assert:\n quiet: true\n fail_msg: \"Target Platform not suppo...
{ "task_files": 9, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 16, "total_bytes": 7724, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_mc
43
[ "no_license" ]
[ { "path": "roles/sys_mc/tasks/sys_mc_setup.yml", "content": "---\n- name: \"System / MC / Setup / User\"\n ansible.builtin.include_tasks:\n file: \"sys_mc_setup_user.yml\"\n loop: \"{{ sys_mc_users }}\"\n loop_control:\n loop_var: sys_mc___setup_user\n when:\n - sys_mc_users is defined\n - s...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 15, "total_bytes": 11280, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_subsystem
43
[ "no_license" ]
[ { "path": "roles/sys_subsystem/tasks/sys_subsystem_prerequisite.yml", "content": "---\n- name: \"System / Subsystem / Setup / Prepare package managers\"\n vars:\n sys_repository:\n prepare: true\n deploy: true\n setup: true\n provision: true\n sys_repository_managers:\n flatp...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 15, "total_bytes": 8859, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_sudo
43
[ "no_license" ]
[ { "path": "roles/sys_sudo/tasks/sys_sudo_setup_sudoers.yml", "content": "---\n- name: \"System / SuDo / Setup / Sudoers / Process user rule\"\n become: true\n ansible.builtin.lineinfile:\n backup: true\n create: false\n firstmatch: false\n line: \"{{ sys_sudo___setup_item['name'] + ' ' + sys_s...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 12, "total_bytes": 4006, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_tools
43
[ "no_license" ]
[ { "path": "roles/sys_tools/defaults/main/end_state_definition.yml", "content": "---\nsys_tools_catalog:\n file: false\n gawk: false\n grep: false\n groff: false\n less: false\n lsof: false\n sed: false\n...\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, ...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 5805, "all_permissive": false }
ansible_role
aplatform64/system
b6f7c1e89d689f2db83b5214779dc3b520d9e8fa
0
roles/sys_user
43
[ "no_license" ]
[ { "path": "roles/sys_user/tasks/sys_user_setup_xdg_paths.yml", "content": "---\n- name: \"System / User / Setup / XDG / Paths / Create (user: {{ sys_user___setup_user3['name'] }})\"\n vars:\n sys_user___setup_home: \"{{\n ('home' in sys_user___setup_user3) |\n ternary(\n sys_user___setu...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 5709, "all_permissive": false }
ansible_role
strongant/strongant.github.io
7c25980d57c5d03a34b1230287244ac610e6ab47
1
kubesphere-all-v2.1.1/k8s/roles/chrony
43
[ "no_license" ]
[ { "path": "kubesphere-all-v2.1.1/k8s/roles/chrony/defaults/main.yaml", "content": "---\nfirst_kube_master: \"{{ hostvars[groups['kube-master'][0]]['access_ip'] | default(hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address'])) }}\"\n\n# as\"1...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2106, "all_permissive": false }
ansible_role
strongant/strongant.github.io
7c25980d57c5d03a34b1230287244ac610e6ab47
1
kubesphere-all-v2.1.1/kubesphere/roles/etcd_backup
43
[ "no_license" ]
[ { "path": "kubesphere-all-v2.1.1/kubesphere/roles/etcd_backup/tasks/main.yaml", "content": "---\n\n- name: etcd_back | Creating directory\n file:\n path: /opt/etcd_back\n state: directory\n mode: 0755\n\n- name: etcd_back | Getting script\n template:\n src: \"{{ item.file }}.j2\"\n dest: \"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1955, "all_permissive": false }
ansible_role
strongant/strongant.github.io
7c25980d57c5d03a34b1230287244ac610e6ab47
1
kubesphere-all-v2.1.1/kubesphere/roles/ks-installer
43
[ "no_license" ]
[ { "path": "kubesphere-all-v2.1.1/kubesphere/roles/ks-installer/templates/ks-installer-deployment.yaml.j2", "content": "---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: ks-installer\n namespace: kubesphere-system\n\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 13762, "all_permissive": false }
ansible_role
strongant/strongant.github.io
7c25980d57c5d03a34b1230287244ac610e6ab47
1
kubesphere-all-v2.1.1/kubesphere/roles/kubesphere-defaults
43
[ "no_license" ]
[ { "path": "kubesphere-all-v2.1.1/kubesphere/roles/kubesphere-defaults/tasks/main.yaml", "content": "---\n- name: Configure defaults\n debug:\n msg: \"Check roles/kubesphere-defaults/defaults/main.yml\"\n tags:\n - always\n", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 122, "all_permissive": false }
ansible_role
aws/eks-anywhere-build-tooling
c17c34277c0d36deed166eb9f00abef52cfea149
61
projects/kubernetes-sigs/image-builder/ansible/roles/load_additional_files
43
[ "permissive" ]
[ { "path": "projects/kubernetes-sigs/image-builder/ansible/roles/load_additional_files/tasks/files.yml", "content": "- name: Copy additional files\n copy:\n src: \"{{ item.src }}\"\n dest: \"{{ item.dest }}\"\n owner: \"{{ item.owner }}\"\n group: \"{{ item.group }}\"\n mode: \"{{ item.mode }...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 323, "all_permissive": true }
ansible_role
stunivention/ucs-demo-deployment
d224c7b71dab0948e60f4eee4554847cae164ad5
1
roles/setup
43
[ "no_license" ]
[ { "path": "roles/setup/tasks/import-config.yml", "content": "---\n- name: generate import config\n template:\n src: \"templates/user_import_http-api.j2\"\n dest: \"/var/lib/ucs-school-import/configs/user_import_http-api.json\"\n tags: import\n\n- name: set import variables\n shell:\n cmd: \"ucr ...
{ "task_files": 9, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 4479, "all_permissive": false }
ansible_role
Ap1py/hoa9_Prometheus
dd47ebd0b05fa061a3f4b95fa86851c7880e8e93
0
roles/CentOS
43
[ "no_license" ]
[ { "path": "roles/CentOS/tasks/main.yml", "content": "---\n - name: Prometheus PATH directory\n file:\n path: ~/prometheus\n state: directory\n\n\n - name: Creating directory for Prometheus files\n file:\n path:\n - /etc/prometheus\n - /var/lib/prometheus\n mode: 077...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 828, "all_permissive": false }
ansible_role
Ap1py/hoa9_Prometheus
dd47ebd0b05fa061a3f4b95fa86851c7880e8e93
0
roles/Ubuntu
43
[ "no_license" ]
[ { "path": "roles/Ubuntu/tasks/main.yml", "content": " - name: Install Prometheus for Ubuntu\n apt:\n name: prometheus\n state: latest\n\n - name: Prometheus Start service\n service:\n name: prometheus\n state: restarted\n enabled: true\n\n", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 208, "all_permissive": false }
ansible_role
dsz182/ansible-poc
bb1844f9e0808af9f04ab2ac6f54fb55051ceca7
2
ansible/roles/hello_world
42
[ "no_license" ]
[ { "path": "ansible/roles/hello_world/tasks/main.yml", "content": "---\n- name: Print debug message\n debug:\n msg: Hello, world!", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 63, "all_permissive": false }
ansible_role
hardr0m/Ansible-playbook-lemp-wordpress
c39b494166bf788da793bca9e63656d4dee6d96d
0
roles/nginx
42
[ "no_license" ]
[ { "path": "roles/nginx/tasks/config.yml", "content": "---\n\n- name: Config nginx\n block:\n - name: update nginx config\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/nginx.conf\n owner: root\n notify:\n - restart nginx\n\n", "license_type": "no_license", ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 697, "all_permissive": false }
ansible_role
hardr0m/Ansible-playbook-lemp-wordpress
c39b494166bf788da793bca9e63656d4dee6d96d
0
roles/wordpress
42
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n\n- name: 'INSTALL | install wordpress'\n import_tasks: \"install.yml\"\n\n- name: 'CONFIG| config nginx'\n import_tasks: \"config.yml\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 135, "all_permissive": false }
ansible_role
pybuche/ansible-secure
6079186328c2259d2b749cce72b0d90aa4ab501c
0
roles/python
42
[ "no_license" ]
[ { "path": "roles/python/tasks/main.yml", "content": "---\n- name: Install Python 2.7.10\n apt: name=python=2.7.10 state=present\n\n- name: Install pip\n apt: name=python-pip\n\n- name: Install virtualenv\n pip: name=virtualenv", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 168, "all_permissive": false }
ansible_role
pybuche/ansible-secure
6079186328c2259d2b749cce72b0d90aa4ab501c
0
roles/secure
42
[ "no_license" ]
[ { "path": "roles/secure/tasks/main.yml", "content": "---\n- name: add authorized_keys\n authorized_key: user=root key=\"{{ item }}\"\n with_file:\n - key.pub\n\n- name: Update APT package cache\n apt: update_cache=yes\n\n- name: Upgrade APT to the latest packages\n apt: upgrade=safe\n\n- name: Instal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 725, "all_permissive": false }
ansible_role
m-kraus/ansible-demo
ed2f104a21525d2c9a0ae54802e3a1de9ac7300a
2
demo/roles/nagiosconfig
42
[ "no_license" ]
[ { "path": "demo/roles/nagiosconfig/tasks/main.yml", "content": "---\n\n- name: Ensure needed directories on target host exist\n file:\n dest: \"{{ dest_plugins_dir }}\"\n state: directory\n\n- name: Synchronize nagios plugins to target host\n synchronize:\n src: \"{{ src_plugins_dir }}/\"\n de...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 11208, "all_permissive": false }
ansible_role
irishgordo/jenkins-sandbox
1b2b2c110521d5987f5d4d94c0f78228898f2ab0
1
terraform/applications/jenkinssbx/ansible/roles/docker-jenkins
42
[ "no_license" ]
[ { "path": "terraform/applications/jenkinssbx/ansible/roles/docker-jenkins/files/config_jenkins_as_code.yaml", "content": "jenkins:\n systemMessage: \"Jenkins configured automatically\"\n globalNodeProperties:\n - envVars:\n env:\n - key: JENKINS_ADMIN_PASSWORD\n value: ${JENK...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4022, "all_permissive": false }
ansible_role
leolnid/ansible-deploy
238d6b53a9d7224ead3d1c3c11cc655aeaa1d75a
0
roles/Composer
42
[ "no_license" ]
[ { "path": "roles/Composer/tasks/main.yml", "content": "---\n- name: Checks if Composer is already installed\n ansible.builtin.stat:\n path: \"{{ composer_path }}\"\n register: composer_installed\n\n- name: Install Composer if its not already installed\n ansible.builtin.include_tasks: install.yml\n wh...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1001, "all_permissive": false }
ansible_role
leolnid/ansible-deploy
238d6b53a9d7224ead3d1c3c11cc655aeaa1d75a
0
roles/Deploy
42
[ "no_license" ]
[ { "path": "roles/Deploy/templates/supervisor-queue.conf.j2", "content": "[program:{{ domain | replace('.', '-') }}-queue]\ncommand=php {{ remote_root_path }}/artisan queue:work --tries=3 --backoff=360 --timeout=60\ndirectory={{ remote_root_path }}\nuser=www-data\n\nautostart=true\nautorestart=true\nnumprocs...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 5345, "all_permissive": false }
ansible_role
leolnid/ansible-deploy
238d6b53a9d7224ead3d1c3c11cc655aeaa1d75a
0
roles/Nginx
42
[ "no_license" ]
[ { "path": "roles/Nginx/templates/nginx.conf.j2", "content": "server {\n listen 80;\n server_name {{ domain }} {{additional_domains}};\n root {{ remote_public_path }};\n\n add_header X-XSS-Protection \"1; mode=block\";\n add_header X-Frame-Options \"ALLOW FROM *\";\n add_header X-Content-Ty...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1481, "all_permissive": false }
ansible_role
leolnid/ansible-deploy
238d6b53a9d7224ead3d1c3c11cc655aeaa1d75a
0
roles/Setup
42
[ "no_license" ]
[ { "path": "roles/Setup/defaults/main.yml", "content": "---\ncopy_local_key: \"{{ lookup('env','ANSIBLE_SSH_PUBLIC_KEY') }}\"\nsys_packages: [ 'curl', 'vim', 'git', 'ufw', 'acl', 'rpm', 'supervisor' ]\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 141 }, { "path"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1748, "all_permissive": false }
ansible_role
leolnid/ansible-deploy
238d6b53a9d7224ead3d1c3c11cc655aeaa1d75a
0
roles/Yarn
42
[ "no_license" ]
[ { "path": "roles/Yarn/tasks/main.yml", "content": "---\n- name: Install the gpg key for nodejs LTS\n apt_key:\n url: \"https://deb.nodesource.com/gpgkey/nodesource.gpg.key\"\n state: present\n\n- name: Install the nodejs LTS repos\n apt_repository:\n repo: \"deb https://deb.nodesource.com/node_{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 779, "all_permissive": false }
ansible_role
jammeska/DevOps_Capstone_Project_Project1_Infra_Optimization_final
0d9204107590e750e7bcbd3065b4de4266723dff
0
roles/kubernetes_objects
42
[ "no_license" ]
[ { "path": "roles/kubernetes_objects/tasks/main.yml", "content": "---\n# tasks file for kubernetes_objects\n - name: create new dirctory for project playbooks\n file:\n path: /tmp/playbooks\n state: directory\n mode: \"0755\"\n - name: copy and unpack project playbooks to master node\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2301, "all_permissive": false }
ansible_role
aselios/techbloc
91cc77bde6b9d9c11c205709d9d142d882b92d11
0
cisco/roles/common
42
[ "no_license" ]
[ { "path": "cisco/roles/common/templates/common.j2", "content": "hostname {{ ansible_host }}\nip domain-name {{ domain }}\nip subnet-zero\nno service pad\nno ip bootp server\nno service config\nservice tcp-keepalives-in\nservice tcp-keepalives-out\nno ip http server\nno ip http secure-server\n", "license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 417, "all_permissive": false }
ansible_role
aselios/techbloc
91cc77bde6b9d9c11c205709d9d142d882b92d11
0
cisco/roles/interfaces
42
[ "no_license" ]
[ { "path": "cisco/roles/interfaces/tasks/main.yml", "content": "---\n- name: deploy interface configuration\n ios_template:\n src: interfaces.j2\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n host: \"{{ device_ip }}\"\n notify:\n - write config\n", "license_type": "no_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 203, "all_permissive": false }
ansible_role
aselios/techbloc
91cc77bde6b9d9c11c205709d9d142d882b92d11
0
cisco/roles/logging
42
[ "no_license" ]
[ { "path": "cisco/roles/logging/tasks/main.yml", "content": "---\n- name: deploys logging configuration \n ios_template:\n src: logging.j2\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n host: \"{{ device_ip }}\"\n notify:\n - write config\n", "license_type": "no_licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 412, "all_permissive": false }
ansible_role
aselios/techbloc
91cc77bde6b9d9c11c205709d9d142d882b92d11
0
cisco/roles/ntp
42
[ "no_license" ]
[ { "path": "cisco/roles/ntp/meta/main.yml", "content": "---\ndependencies:\n - role: writecfg\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "cisco/roles/ntp/templates/ntp.j2", "content": "ntp server ip {{ ntp1 }} \nntp server ip {{ ntp2 }}\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 369, "all_permissive": false }
ansible_role
aselios/techbloc
91cc77bde6b9d9c11c205709d9d142d882b92d11
0
cisco/roles/routing
42
[ "no_license" ]
[ { "path": "cisco/roles/routing/tasks/main.yml", "content": "---\n- name: deploy routing configuration\n ios_template:\n src: routing.j2\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n host: \"{{ device_ip }}\"\n notify:\n - write config\n", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 198, "all_permissive": false }
ansible_role
Pueriles/Network-Automation
f9ab9178e2af133aa95c9105b03cc217e37d794c
0
roles/router_base
42
[ "no_license" ]
[ { "path": "roles/router_base/tasks/main.yml", "content": "---\n\n- name: \"Router Configurations\"\n become: yes\n hosts: routers\n gather_facts: false\n tasks:\n \n - name: \"Hostname configuration\"\n ios_config:\n lines:\n - hostname {{ inventory_hostname }}\n \n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1449, "all_permissive": false }
ansible_role
thienngho/vagrant-ansible-flask
7dc21ef891e7247918fde33a5d095e2bf619f3bf
0
ansible/roles/common
42
[ "no_license" ]
[ { "path": "ansible/roles/common/vars/main.yml", "content": "---\n\n# project name\nproject_name: dev\n\n# home path for project and virtualenv, e.g. /home/vagrant\nhome_path: /home/{{ user_name }}\n\n# project path, e.g. /opt/absolute\nproject_path: \"/opt/absolute\"\n\n# flask app path, e.g. /opt/absolute/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 760, "all_permissive": false }
ansible_role
thienngho/vagrant-ansible-flask
7dc21ef891e7247918fde33a5d095e2bf619f3bf
0
ansible/roles/nginx
42
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n\n- name: Install Nginx\n apt: name=nginx state=installed\n\n- name: Create the Nginx configuration file\n template: src=site.conf.j2 dest=/etc/nginx/sites-available/{{ project_name }}.conf\n\n- name: Ensure that the default site is removed\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1147, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/cfme-add-provider-ec2
42
[ "no_license" ]
[ { "path": "roles/cfme-add-provider-ec2/tasks/main.yml", "content": "---\n- name: Add Amazon EC2 Provider to ManageIQ\n manageiq_provider:\n name: 'AWS01'\n provider_type: 'amazon'\n state: 'present'\n provider_region: 'us-east-1'\n access_key_id: \"{{ student_ec2_access }}\"\n secret_acce...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 553, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/cfme-add-provider-tower
42
[ "no_license" ]
[ { "path": "roles/cfme-add-provider-tower/templates/tower_provider.json.j2", "content": "{\n \"type\":\"ManageIQ::Providers::AnsibleTower::Provider\",\n \"name\":\"Ansible Tower\",\n \"url\":\"https://{{ tower_dns_name }}\",\n \"credentials\" : {\n \"userid\" : \"admin\",\n \"password\" : \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2638, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/cfme-upload
42
[ "no_license" ]
[ { "path": "roles/cfme-upload/defaults/main.yml", "content": "s3_bucket_name: oa-cfmeeast\nimage_name: cfme-ec2-5.9.3.4-1.x86_64.vhd\nimage_location: ../../Downloads/\nimage_short_name: cfme59341\n\ncontainers:\n - Description: \"{{ image_short_name }}\"\n Format: vhd\n UserBucket:\n S3Bucket: \"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1897, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/control-node
42
[ "no_license" ]
[ { "path": "roles/control-node/templates/ansible.cfg.j2", "content": "[defaults]\nconnection = smart\ntimeout = 60\nforks = 10\ninventory = {{ control_node_inventory_path }}{{ username }}-instances.txt\nhost_key_checking = False\n", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2309, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/create-runtime-inventory
42
[ "no_license" ]
[ { "path": "roles/create-runtime-inventory/tasks/main.yml", "content": "---\n- name: add hosts to control_nodes group\n add_host:\n name: \"{{ item.tagged_instances[0].public_ip }}\"\n ansible_host: \"{{ item.tagged_instances[0].public_ip }}\"\n ansible_user: ec2-user\n groups: lab_hosts,control...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 6621, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/ec2-find-amis
42
[ "no_license" ]
[ { "path": "roles/ec2-find-amis/defaults/main.yml", "content": "image_names:\n rhel-74: RHEL-7.4_HVM_GA-20170808-x86_64-2-Hourly2-GP2\n cfme-58: import-ami-fg7ju3vd\n win-2016: Windows_Server-2016-English-Full-Base-2018.01.12\nec2_region: us-east-1\n", "license_type": "no_license", "detected_licen...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1155, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/email-instructor
42
[ "no_license" ]
[ { "path": "roles/email-instructor/tasks/main.yml", "content": "- name: Send email to instructor with inventroy attached\n delegate_to: localhost\n sendgrid:\n username: \"{{ sendgrid_user | default(omit) }}\"\n password: \"{{ <PASSWORD> | default(omit) }}\"\n api_key: \"{{ sendgrid_api_key | defa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 950, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/generate-content
42
[ "no_license" ]
[ { "path": "roles/generate-content/templates/w2-tower-cf-lb-index.html.j2", "content": "<!DOCTYPE html>\n<html>\n<font face=\"verdana,sans,arial\">\n<style>\n\n/* unvisited link */\na:link {\n color: #FF6978;\n}\n\n/* visited link */\na:visited {\n color: #FF6978;\n}\n\n/* mouse over link */\na:hover {...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 12058, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/generate-nodes-and-users
42
[ "no_license" ]
[ { "path": "roles/generate-nodes-and-users/defaults/main.yml", "content": "hosting_nodes: []\ntemplate_nodes: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/generate-nodes-and-users/tasks/main.yml", "content": "---\n- name: generate ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1088, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/gitlab-postconfig
42
[ "no_license" ]
[ { "path": "roles/gitlab-postconfig/tasks/main.yml", "content": "---\n# tasks file for gitlab-postconfig\n- name: GitLab Post | Check for pip\n stat:\n path: /usr/bin/pip\n register: pip\n\n- name: GitLab Post | Install pip\n shell: easy_install pip\n\n- name: GitLab Post | Install pyapi-gitlab \n pip...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 5873, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/hosting-generate-html
42
[ "no_license" ]
[ { "path": "roles/hosting-generate-html/defaults/main.yml", "content": "---\nworkshop_content_git_repo_url: https://github.com/oatakan/ansible-workshop.git\nworkshop_decks_git_repo_url: https://github.com/ansible/lightbulb.git\nworkshop_ascii_doc_file_name: doc/ansible-workshop-lab-guide.adoc", "license_...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1553, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/hosting-upload-content
42
[ "no_license" ]
[ { "path": "roles/hosting-upload-content/tasks/main.yml", "content": "- name: copy index.html\n copy:\n src: index.html\n dest: /usr/share/nginx/html/index.html\n\n- name: set selinux\n sefcontext:\n target: '/usr/share/nginx/html'\n setype: httpd_sys_content_t\n state: present\n when: ansi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 688, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/provision-ansible-tower
42
[ "no_license" ]
[ { "path": "roles/provision-ansible-tower/tasks/main.yml", "content": "---\n- name: Install EPEL\n yum:\n name: \"https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm\"\n state: present\n register: install_epel\n until: install_epel|success\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3374, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/provision-cfme
42
[ "no_license" ]
[ { "path": "roles/provision-cfme/tasks/main.yml", "content": "---\n- name: copy chrony configuration for RHEL7\n template:\n src: chrony.j2\n dest: /etc/chrony.conf\n owner: root\n group: root\n mode: 0644\n register: chrony_conf\n\n- name: ensure chrony service is started and enabled\n ser...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1856, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/provision-dns-ec2
42
[ "no_license" ]
[ { "path": "roles/provision-dns-ec2/tasks/main.yml", "content": "- name: get record for router ELB DNS Entry\n route53:\n command: get\n zone: \"{{ hosted_zone_domain_name }}\"\n record: \"{{ ec2_name_prefix }}.{{ hosted_zone_domain_name }}\"\n type: A\n register: routerelbrec\n when: hosted_z...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 730, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/tower-add-content
42
[ "no_license" ]
[ { "path": "roles/tower-add-content/tasks/main.yml", "content": "---\n- name: create private key\n lineinfile:\n dest: /tmp/private_key.pem\n line: \"{{ ec2_private_key }}\"\n create: yes\n\n- name: add aws creds\n command: tower-cli credential create --kind aws --name=student-ec2 --organization=D...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2932, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/tower-harden
42
[ "no_license" ]
[ { "path": "roles/tower-harden/tasks/main.yml", "content": "---\n- name: copy memcached config file\n copy:\n src: memcached\n dest: /etc/sysconfig/memcached\n notify: restart memcached\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 129, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/wetty-old
42
[ "no_license" ]
[ { "path": "roles/wetty-old/templates/wetty.service.j2", "content": "# systemd unit file\n#\n# place in /etc/systemd/system\n# systemctl enable wetty.service\n# systemctl start wetty.service\n\n[Unit]\nDescription=Wetty Web Terminal\nAfter=network.target\n\n[Service]\nUser=root\nGroup=root\n\nWorkingDirector...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 862, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/windows-common
42
[ "no_license" ]
[ { "path": "roles/windows-common/tasks/main.yml", "content": "---\n# tasks file for windows-common\n- name: Add domain controller private IP as DNS server\n win_dns_client:\n adapter_names: \"*\"\n ipv4_addresses: \"{{ dns_servers }}\"\n\n#- name: Ensure local workgroup first\n# win_domain_membership...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3748, "all_permissive": false }
ansible_role
oatakan/management-lightbulb-provisioner
5369a45729bca78b0a0ae355cf87a5fe51cff4ef
0
roles/windows-workstation
42
[ "no_license" ]
[ { "path": "roles/windows-workstation/tasks/main.yml", "content": "---\n# tasks file for windows-workstation\n\n### Req dot net 4.5.2 \n#- name: Install .Net framework 4.5.2 \n# win_feature:\n# name: DotNet-4-5-2\n# state: present\n# Win2016 has .NET 4.6... \n\n- name: Install Visual Studio Code, G...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1169, "all_permissive": false }
ansible_role
JoeStratton/win_ad
eb5e13dd62727a5411789420b1e23b50af1181ed
0
roles/win_service_config
42
[ "no_license" ]
[ { "path": "roles/win_service_config/tasks/main.yml", "content": "---\n- name: Install Windows package\n win_chocolatey:\n name: \"{{ package_name }}\"\n params: \"{{ parameters }}\"\n state: latest\n when: ansible_os_family == \"Windows\"\n\n- name: Start windows service\n win_service:\n name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 554, "all_permissive": false }
ansible_role
bonyuta0204/vagrant-machines
3dffa313f139667beb6280f4a03dda6855b384f8
0
centos/ansible/roles/awscli
42
[ "no_license" ]
[ { "path": "centos/ansible/roles/awscli/tasks/main.yml", "content": " - name: check aws-cli is installed\n stat:\n path: /usr/local/bin/aws\n register: st\n\n - name: install requied packages\n yum:\n name: unzip\n state: present\n update_cache: no\n become: yes\n\n - name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 549, "all_permissive": false }
ansible_role
bonyuta0204/vagrant-machines
3dffa313f139667beb6280f4a03dda6855b384f8
0
centos/ansible/roles/awsmfa
42
[ "no_license" ]
[ { "path": "centos/ansible/roles/awsmfa/tasks/main.yml", "content": " - name: install aws-mfa\n pip:\n name: aws-mfa\n executable: pip3\n extra_args: --user\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 103 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 103, "all_permissive": false }
ansible_role
bonyuta0204/vagrant-machines
3dffa313f139667beb6280f4a03dda6855b384f8
0
centos/ansible/roles/docker
42
[ "no_license" ]
[ { "path": "centos/ansible/roles/docker/tasks/main.yml", "content": "---\n- name: Add docker repository\n get_url:\n url: https://download.docker.com/linux/centos/docker-ce.repo\n dest: /etc/yum.repos.d/\n become: yes\n\n- name: Add docker packages\n yum:\n name: \n - docker-ce\n - dock...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 591, "all_permissive": false }
ansible_role
bonyuta0204/vagrant-machines
3dffa313f139667beb6280f4a03dda6855b384f8
0
centos/ansible/roles/yum-packages
42
[ "no_license" ]
[ { "path": "centos/ansible/roles/yum-packages/defaults/main.yml", "content": "packages:\n- git\n- vim\n- tmux\n- tig\n- make\n- ruby\n- python3\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "centos/ansible/roles/yum-packages/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 165, "all_permissive": false }
ansible_role
bonyuta0204/vagrant-machines
3dffa313f139667beb6280f4a03dda6855b384f8
0
ubuntu-22-04-cli/ansible/roles/apt-packages
42
[ "no_license" ]
[ { "path": "ubuntu-22-04-cli/ansible/roles/apt-packages/defaults/main.yml", "content": "apt_packages:\n- git\n- vim\n- tmux\n- tig\n- make\n- build-essential\n- ruby\n- libmysqlclient-dev\napt_repositories:\n- ppa:fish-shell/release-3\n", "license_type": "no_license", "detected_licenses": [], "si...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 572, "all_permissive": false }
ansible_role
bonyuta0204/vagrant-machines
3dffa313f139667beb6280f4a03dda6855b384f8
0
ubuntu-22-04-cli/ansible/roles/awscli
42
[ "no_license" ]
[ { "path": "ubuntu-22-04-cli/ansible/roles/awscli/tasks/main.yml", "content": " - name: check aws-cli is installed\n stat:\n path: /usr/local/bin/aws\n register: st\n\n - name: get aws-cli installer\n unarchive:\n src: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\n dest:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 428, "all_permissive": false }
ansible_role
RHEcosystemAppEng/kogito-benchmark-automation
6f83a1892403b86d7e387d802e65d13697745c73
0
testRunner/roles/mongo-container-direct
42
[ "permissive" ]
[ { "path": "testRunner/roles/mongo-container-direct/tasks/main.yml", "content": "---\n- name: vars\n ansible.builtin.debug:\n msg: \"vars are - isMongo#{{ test_defs.AppInfra.Mongo }}, container#{{ reqRoleAction }}, containerType#{{ containerType }}\"\n\n- name: actions on mongo BEFORE test run\n block:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2941, "all_permissive": true }
ansible_role
RHEcosystemAppEng/kogito-benchmark-automation
6f83a1892403b86d7e387d802e65d13697745c73
0
testRunner/roles/mongo-container-docker
42
[ "permissive" ]
[ { "path": "testRunner/roles/mongo-container-docker/tasks/main.yml", "content": "---\n- name: remove mongo container if present\n become: yes\n community.docker.docker_container:\n name: kogito-mongodb\n image: quay.io/dmartino/mongo:4.4.9\n state: absent\n ports:\n - \"27017:27017\"\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 485, "all_permissive": true }
ansible_role
RHEcosystemAppEng/kogito-benchmark-automation
6f83a1892403b86d7e387d802e65d13697745c73
0
testRunner/roles/mongo-container-podman
42
[ "permissive" ]
[ { "path": "testRunner/roles/mongo-container-podman/tasks/main.yml", "content": "---\n- name: remove mongo container if present\n containers.podman.podman_container:\n name: kogito-mongodb\n image: quay.io/dmartino/mongo:4.4.9\n state: absent\n ports:\n - \"27017:27017\"\n\n- name: Start a ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 458, "all_permissive": true }
ansible_role
RHEcosystemAppEng/kogito-benchmark-automation
6f83a1892403b86d7e387d802e65d13697745c73
0
testRunner/roles/postgres-container-docker
42
[ "permissive" ]
[ { "path": "testRunner/roles/postgres-container-docker/tasks/main.yml", "content": "---\n- name: remove postgresql container\n become: yes\n community.docker.docker_container:\n name: postgres-container\n image: quay.io/dmartino/postgres:9.6\n state: absent\n ports:\n - \"5432:5432\"\n re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1513, "all_permissive": true }
ansible_role
RHEcosystemAppEng/kogito-benchmark-automation
6f83a1892403b86d7e387d802e65d13697745c73
0
testRunner/roles/postgres-container-podman
42
[ "permissive" ]
[ { "path": "testRunner/roles/postgres-container-podman/tasks/main.yml", "content": "---\n#- name: Create the postgres network\n# containers.podman.podman_network:\n# name: postgres-compose-network\n# driver: bridge\n\n- name: remove postgresql container if present\n containers.podman.podman_container...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1550, "all_permissive": true }
ansible_role
danirdd92/jenkins-iis
28afb0e6f8ce46f8532a8b90ee8a139ee72293d0
0
ansible/roles/backup_and_deploy_iis_websites
49
[ "no_license" ]
[ { "path": "ansible/roles/backup_and_deploy_iis_websites/tasks/main.yml", "content": "---\n- name: Ensure backup directory exists\n ansible.windows.win_file:\n path: \"{{ backup_dir }}\"\n state: directory\n\n- name: Check if website directories exist\n win_stat:\n path: \"{{ item.physical_path }}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2182, "all_permissive": false }
ansible_role
berkas1/ansible-desktop
3323c91ff4bd4155115b04c5c071271714a567e5
0
roles/common
49
[ "no_license" ]
[ { "path": "roles/common/tasks/sublime.yml", "content": "---\n- name: Add Sublime GPG key\n become: true\n apt_key:\n url: https://download.sublimetext.com/sublimehq-pub.gpg\n state: present\n\n- name: Install Sublime Text\n become: true\n apt_repository:\n repo: deb https://download.sublimetext...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2823, "all_permissive": false }
ansible_role
adrian555/dday2019
fbe2d5f28f854783778173f6e12a21003deae6b5
1
spark-app-operator/roles/sparkapplication
49
[ "no_license" ]
[ { "path": "spark-app-operator/roles/sparkapplication/handlers/main.yml", "content": "---\n# handlers file for sparkapplication\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "spark-app-operator/roles/sparkapplication/vars/main.yml", "content"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2371, "all_permissive": false }
ansible_role
adrian555/dday2019
fbe2d5f28f854783778173f6e12a21003deae6b5
1
spark-operator.full/roles/spark
49
[ "no_license" ]
[ { "path": "spark-operator.full/roles/spark/tasks/main.yml", "content": "---\n# tasks file for spark\n- name: generate spark-master deployment yaml\n template:\n src: master.yaml.j2\n dest: master.yaml\n mode: 0644\n\n- name: deploy spark-master\n k8s:\n state: present\n kind: Deployment\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1536, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/1password
49
[ "no_license" ]
[ { "path": "roles/1password/tasks/main.yml", "content": "---\n- name: \"1Password | Configuration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/cask/1password\n - name: \"1Password | Install\"\n community.general.homebrew_cask:\n name: 1password\n state: present\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 966, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/alacritty
49
[ "no_license" ]
[ { "path": "roles/alacritty/tasks/main.yml", "content": "---\n- name: \"Alacritty | Configuration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/cask/alacritty\n - name: \"Alacritty | Install\"\n community.general.homebrew_cask:\n name: alacritty\n state: present\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 721, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/awscli
49
[ "no_license" ]
[ { "path": "roles/awscli/tasks/main.yml", "content": "---\n- name: \"AWSCLI | Configuration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/formula/awscli\n - name: \"AWSCLI | Install\"\n community.general.homebrew:\n name: awscli\n state: present\n", "license_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 226, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/balenaetcher
49
[ "no_license" ]
[ { "path": "roles/balenaetcher/tasks/main.yml", "content": "---\n- name: \"Etcher | Configuration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/cask/balenaetcher\n - name: \"Etcher | Install\"\n community.general.homebrew_cask:\n name: balenaetcher\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 240, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/brave
49
[ "no_license" ]
[ { "path": "roles/brave/tasks/main.yml", "content": "---\n- name: \"Brave | Configuration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/cask/brave-browser\n - name: \"Brave | Install\"\n community.general.homebrew_cask:\n name: brave-browser\n state: present\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 240, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/docker
49
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: \"Docker CE | Conifguration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/cask/docker?ref=trap.jp\n - name: \"Docker CE | Install\"\n community.general.homebrew_cask:\n name: docker\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 246, "all_permissive": false }
ansible_role
cauliflwr/dotfiles
23776a1cfdae3c954988e575cd23d3fc3b49480a
0
roles/firefox
49
[ "no_license" ]
[ { "path": "roles/firefox/tasks/main.yml", "content": "---\n- name: \"Firefox | Configuration\"\n tags: configure, never\n block:\n # https://formulae.brew.sh/cask/firefox\n - name: \"Firefox | Install\"\n community.general.homebrew_cask:\n name: firefox\n state: present\n", "l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 232, "all_permissive": false }