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 | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/change_gw_ir2 | 7,466 | [
"no_license"
] | [
{
"path": "roles/change_gw_ir2/tasks/main.yml",
"content": "---\n - name: Delete default route\n blockinfile:\n path: /etc/netplan/50-cloud-init.yaml\n insertafter: ' dhcp4: true'\n block: |\n #Insert from ansible\n dhcp4-overrides:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 583,
"all_permissive": false
} |
ansible_role | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/change_gw_srv | 7,466 | [
"no_license"
] | [
{
"path": "roles/change_gw_srv/tasks/main.yml",
"content": "---\n - name: Delete default route\n blockinfile:\n path: /etc/netplan/50-cloud-init.yaml\n insertafter: ' dhcp4: true'\n block: |\n #Insert from ansible\n dhcp4-overrides:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 576,
"all_permissive": false
} |
ansible_role | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/knocking_cr | 7,466 | [
"no_license"
] | [
{
"path": "roles/knocking_cr/tasks/main.yml",
"content": "---\n - name: Download knocking script\n template:\n src: knock.sh\n dest: /home/vagrant\n mode: '0755'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 118
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 118,
"all_permissive": false
} |
ansible_role | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/knocking_ir | 7,466 | [
"no_license"
] | [
{
"path": "roles/knocking_ir/tasks/main.yml",
"content": "---\n - name: Download knocking rules\n template:\n src: knocking.rules\n dest: /home/vagrant\n# - name: Restore knocking rules\n# shell:\n# iptables-restore < /home/vagrant/knocking.rules\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 205,
"all_permissive": false
} |
ansible_role | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/nat_enable | 7,466 | [
"no_license"
] | [
{
"path": "roles/nat_enable/tasks/main.yml",
"content": "---\n - name: Enable masquerade\n iptables:\n table: nat\n chain: POSTROUTING\n out_interface: enp0s8\n jump: MASQUERADE\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 139
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 139,
"all_permissive": false
} |
ansible_role | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/port_forwarding | 7,466 | [
"no_license"
] | [
{
"path": "roles/port_forwarding/tasks/main.yml",
"content": "---\n - name: Enable prerouting\n iptables:\n table: nat\n chain: PREROUTING\n in_interface: enp0s8\n protocol: tcp\n destination_port: 8080\n to_destination: 192.168.0.2\n jump: DNAT\n - name: Enable postr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1137,
"all_permissive": false
} |
ansible_role | darknetworm/Linux_Lesson_29 | e3deb3eac4f69e398ee5c88705ffcee8ac5afc2b | 0 | roles/web_access | 7,466 | [
"no_license"
] | [
{
"path": "roles/web_access/tasks/main.yml",
"content": "---\n - name: Enable masquerade\n iptables:\n table: nat\n chain: POSTROUTING\n out_interface: enp0s3\n jump: MASQUERADE\n - name: Enable forwarding\n iptables:\n chain: FORWARD\n in_interface: enp0s8\n out_i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 411,
"all_permissive": false
} |
ansible_role | Sorarinu/ansible_isucon_template | b3821f33eb8e6f60c1d1099906c1ea6a89165a11 | 0 | roles/git | 7,466 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "---\n\n- name: install git (CentOS)\n yum:\n name: git\n state: present\n when:\n - ansible_distribution == \"CentOS\"\n\n- name: install git (Ubuntu)\n apt:\n name: git\n state: present\n when:\n - ansible_distribution == \"Ubuntu\"\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 857,
"all_permissive": false
} |
ansible_role | Sorarinu/ansible_isucon_template | b3821f33eb8e6f60c1d1099906c1ea6a89165a11 | 0 | roles/netdata | 7,466 | [
"no_license"
] | [
{
"path": "roles/netdata/tasks/main.yml",
"content": "---\n\n- name: Install Netdata\n shell: \"bash <(curl -Ss https://my-netdata.io/kickstart.sh) all --dont-wait\"\n ignore_errors: \"{{ ansible_check_mode }}\"\n\n- name: Run netdata\n service:\n name: netdata\n state: started\n enabled: no\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 280,
"all_permissive": false
} |
ansible_role | francescvila/ansible-kafka-cluster | 3f613c7c8642f700c3a22ed12f6951c02125fc5f | 0 | roles/common | 7,466 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: Set timezone to Europe/Brussels\n timezone:\n name: Europe/Brussels\n\n- name: Pre-install list of packages\n apt:\n name: ['python3-apt','python3-pip','curl','vim','lsof','telnet','htop','logrotate']\n state: present\n update_cache:... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1328,
"all_permissive": false
} |
ansible_role | francescvila/ansible-kafka-cluster | 3f613c7c8642f700c3a22ed12f6951c02125fc5f | 0 | roles/kafka | 7,466 | [
"no_license"
] | [
{
"path": "roles/kafka/tasks/main.yml",
"content": "- name: Create data volume directory\n file:\n path: \"{{ data_path }}\"\n owner: root\n group: root\n state: directory\n mode: '0755'\n\n- name: Create Kafka volume directory\n file:\n path: \"{{ data_path }}/kafka\"\n owner: root\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2670,
"all_permissive": false
} |
ansible_role | jalcobra/Ansible- | 5fbf1bc6f57ab13da91c929c8f86d4573a6b6e85 | 0 | ansible101/Ansible101/ansible001/roles/sqlserver | 7,466 | [
"no_license"
] | [
{
"path": "ansible101/Ansible101/ansible001/roles/sqlserver/tasks/main.yml",
"content": "---\n# Archivo task/tareas para el sqlserver. Es decir, mysql.\n\n- name: Instalar sqlserver (mysql)\n apt: name={{item}}\n with_items:\n - python-mysqldb\n - mysql-server\n\n- name: setup root password\n debco... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 443,
"all_permissive": false
} |
ansible_role | odpi/egeria-samples | be73c6a7a124c65472c62463085a2b6622ae476d | 13 | ansible-collection/roles/egeria-omag-server | 7,466 | [
"permissive"
] | [
{
"path": "ansible-collection/roles/egeria-omag-server/tasks/manage-extra-libs.yml",
"content": "---\n# SPDX-License-Identifier: Apache-2.0\n# Copyright Contributors to the ODPi Egeria project.\n\n- name: manage-extra-libs\n debug: var=app_extra_libs\n tags:\n - egeria-debug\n\n- name: manage app extra... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 14781,
"all_permissive": true
} |
ansible_role | odpi/egeria-samples | be73c6a7a124c65472c62463085a2b6622ae476d | 13 | ansible-collection/roles/egeria-omag-server-admin | 7,466 | [
"permissive"
] | [
{
"path": "ansible-collection/roles/egeria-omag-server-admin/tasks/server-instance.yml",
"content": "---\n# SPDX-License-Identifier: Apache-2.0\n# Copyright Contributors to the ODPi Egeria project.\n\n- name: prep server url base\n set_fact:\n server_base_url: \"{{ admin_omag_server_config[config].url }... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 9286,
"all_permissive": true
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/ap-groups | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/ap-groups/tasks/main.yml",
"content": "---\n#rf-profile/tasks/main.yml\n- name: generate ap-groups\n template: \n src=ap_groups.j2\n dest=\"{{ap_groups_path}}/{{item.name}}_ap_groups\"\n # loops over the rf_profiles defined in the vars folder\n with_items: \"{{ ap_groups }}\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 770,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/interfaces | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/interfaces/templates/interface.j2",
"content": "#jinja2:variable_start_string:'[%' , variable_end_string:'%]'\n{% if item.name == \"management\" %}\nconfig interface vlan management [%item.vlan%] \nconfig interface address management [%item.subnet%]{{[%item.network_ip%] + item.ip}} [%i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2046,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/rf-profile | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/rf-profile/templates/rf_profile_a.j2",
"content": "config rf-profile create 802.11a {{item.profile_name}}\nconfig rf-profile trap-threshold clients 50 {{item.profile_name}}\nconfig rf-profile trap-threshold interference 30 {{item.profile_name}}\nconfig rf-profile channel add 36 {{item.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4165,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/test | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/test/templates/test.j2",
"content": "config wlan apgroup profile-mapping add {{item.name}} {{item.rf_profile_a}}\n{% if item.rf_profile_b != \"None\"%}\nconfig wlan apgroup profile-mapping add {{item.name}} {{item.rf_profile_b}}\n{% endif %}",
"license_type": "no_license",
"det... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1712,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/wlans | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/wlans/tasks/main.yml",
"content": "---\n#rf-profile/tasks/main.yml\n- name: generate wlans config\n template: \n src=ap_groups.j2\n dest=\"{{ap_groups_path}}/{{item.name}}_wlan\"\n # loops over the rf_profiles defined in the vars folder\n with_items: \"{{ wlans }}\"\n- name: a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/wlc-config | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/wlc-config/tasks/main.yml",
"content": "---\n#roles/wlc-config/tasks/main.yml\n- name: assemble config file\n assemble: \n src=\"{{config_snippets}}\"\n dest=\"{{role_path}}/templates/config.j2\"\n regexp=\"^[^.]\"\n- name: Generate config\n template: src=config.j2 dest=\"{{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 11912,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/wlc-config-1 | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/wlc-config-1/templates/interface-old.j2",
"content": "config interface create demo 136\nconfig interface address dynamic-interface demo 10.136.0.{{item.ip}} 255.255.0.0 10.136.255.254\nconfig interface dhcp dynamic-interface demo primary 10.100.253.6 secondary 10.100.253.106\nconfig in... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 7895,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/wlc-config-redundancy | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/wlc-config-redundancy/vars/main.yml",
"content": "---\n#wlc-config-1/vars/main.yml\ncontrollers:\n - {hostname: WLC1, mgmt: 10.130.0.1, redundancy: 10.130.0.11, peer: 10.130.0.12, role: primary}\n - {hostname: WLC2, mgmt: 10.130.0.2, redundancy: 10.130.0.12, peer: 10.130.0.11, role: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1596,
"all_permissive": false
} |
ansible_role | raffomartini/CL17 | 2af4663f4a014d490cdd71d005fbfc0004c8e5fa | 0 | cl17/roles/wlc-initial-config | 7,466 | [
"no_license"
] | [
{
"path": "cl17/roles/wlc-initial-config/templates/initial-setup-template.j2",
"content": "{{item.hostname}}\ncisco\nC1sco123\nC1sco123\nDHCP\nyes\n{{item.mgmt}}\n255.255.0.0\n10.130.255.254\n130\n10.100.253.6\nNO\n1.1.1.1\n172.16.31.10\nCL17\nprovisioning\nNO\nno\nno\nDE\nno\nno\nYES\nYES\n10.128.0.1\n3600... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 670,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/ansible-hubot | 7,466 | [
"no_license"
] | [
{
"path": "roles/ansible-hubot/defaults/main.yml",
"content": "---\n# File: defaults/main.yml - Ansible Hubot default variables\n\n#############################################################################\n#\n# hubot_admin: User account that will run the bot; for\n# ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 13136,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/ansible-role-firewall | 7,466 | [
"no_license"
] | [
{
"path": "roles/ansible-role-firewall/.travis.yml",
"content": "---\nservices: docker\n\nenv:\n - distro: centos7\n init: /usr/lib/systemd/systemd\n run_opts: \"--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro\"\n - distro: centos6\n init: /sbin/init\n run_opts: \"--privileged\"\n - di... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 5581,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/ansible-role-mongodb | 7,466 | [
"no_license"
] | [
{
"path": "roles/ansible-role-mongodb/templates/mongod.conf.j2",
"content": "# mongod.conf\n\n# for documentation of all options, see:\n# http://docs.mongodb.org/manual/reference/configuration-options/\n\n{% if mongodb_fork is defined %}\n# whether to fork the process or not\nfork = {{ mongodb_fork }}\n{%... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 6897,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/ansible-zabbix-agent | 7,466 | [
"no_license"
] | [
{
"path": "roles/ansible-zabbix-agent/tasks/Suse.yml",
"content": "---\n# Tasks specific for OpenSuse Systems\n\n- name: \"Include Zabbix gpg ids\"\n include_vars: zabbix.yml\n\n- name: \"Install zypper repo dependency\"\n zypper:\n name: \"{{ item }}\"\n state: present\n with_items:\n - python-... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 26907,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/ansible-zabbix-server | 7,466 | [
"no_license"
] | [
{
"path": "roles/ansible-zabbix-server/tasks/mysql.yml",
"content": "---\n# task file for mysql\n- name: \"Set the correct delegated_dbhost: {{inventory_hostname}} (to support MySQL db deployment on a remote dbhost)\"\n set_fact:\n delegated_dbhost: \"{{ zabbix_server_dbhost if (zabbix_server_dbhost != ... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 18362,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/common | 7,466 | [
"no_license"
] | [
{
"path": "roles/common/tasks/centos.yml",
"content": "---\n- name: conf yum.conf\n template: src=\"yum.conf\" dest=\"/etc\" owner=\"root\" group=\"root\" mode=\"0755\"\n tags:\n - common\n\n- name: use ali source\n shell: \"wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Cent... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3697,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/hadoop | 7,466 | [
"no_license"
] | [
{
"path": "roles/hadoop/README.md",
"content": "Hadoop hdfs\n=========\n注意,所有的人机器的hostname必须不一样!!!\n注意,所有的人机器的hostname必须不一样!!!\n注意,所有的人机器的hostname必须不一样!!!\n注意,所有的人机器的hostname必须不一样!!!\n注意,所有的人机器的hostname必须不一样!!!\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 157
},
{... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 11886,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/hbase | 7,466 | [
"no_license"
] | [
{
"path": "roles/hbase/tasks/main.yml",
"content": "---\n# - name: install gtar\n# apt:\n# name: gtar\n# state: installed\n\n# - lineinfile:\n# dest: /etc/hosts\n# state: absent\n# regexp: \"{{item}}\"\n# with_items:\n# - '^127\\.0\\.0\\.1.*?\\n'\n# - '^127\\.0\\.1\\.1.*?\\n'... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 7028,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/jdk8 | 7,466 | [
"no_license"
] | [
{
"path": "roles/jdk8/tasks/main.yml",
"content": "---\n- stat: path=\"/usr/lib/jvm/{{jdk8_version_name}}/bin/java\"\n register: jvm\n tags:\n - jdk\n\n- name: copy jdk\n copy: src=\"{{jdk8_path}}\" dest=\"/tmp\"\n tags:\n - jdk\n\n- name: mkdir for Java\n file: path=\"/usr/lib/jvm/\" state=direc... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1241,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/jenkins | 7,466 | [
"no_license"
] | [
{
"path": "roles/jenkins/templates/basic-security.groovy",
"content": "#!groovy\nimport hudson.security.*\nimport jenkins.model.*\n\ndef instance = Jenkins.getInstance()\n\nprintln \"--> Checking if security has been set already\"\n\nif (!instance.isUseSecurity()) {\n println \"--> creating local user 'a... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 14124,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/jenkins-agent | 7,466 | [
"no_license"
] | [
{
"path": "roles/jenkins-agent/vars/main.yml",
"content": "---\n# vars file for jenkins-agent\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "roles/jenkins-agent/handlers/main.yml",
"content": "---\n# handlers file for jenkins-agent\n",
"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4593,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/jenkins-openresty-conf | 7,466 | [
"no_license"
] | [
{
"path": "roles/jenkins-openresty-conf/tasks/main.yml",
"content": "---\n- name: template jenkins.conf\n template:\n src: jenkins.conf\n dest: \"{{nginx_servers_conf_path}}/\"\n owner: root\n group: root\n mode: \"u=rxw,og=rx\"\n force: true\n tags:\n - jenkins_openresty_conf\n noti... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 338,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/kafka-ansible-role | 7,466 | [
"no_license"
] | [
{
"path": "roles/kafka-ansible-role/tasks/main.yml",
"content": "---\n# - name: \"create group if not exists\"\n# group:\n# name: \"{{kafka_group}}\"\n# state: present\n# tags:\n# - kafka\n#\n# - name: \"check user is exists\"\n# shell: \"id {{kafka_user}} >& /dev/null\"\n# register: kaf... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 9079,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/mysql-ansible | 7,466 | [
"no_license"
] | [
{
"path": "roles/mysql-ansible/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - mysql-role-ansible",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/mysql-ansible/templates/my.cnf.j2",
"content": "[... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 12111,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/openresty | 7,466 | [
"no_license"
] | [
{
"path": "roles/openresty/defaults/main.yml",
"content": "---\n# defaults file for openresty\nopenresty_version: openresty-1.11.2.2\nopenresty_download_url: \"https://openresty.org/download/{{openresty_version}}.tar.gz\"\nnginx_conf_path: /usr/local/nginx/nginx/conf\nnginx_stream_conf_path: \"{{nginx_conf_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 6301,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/os-init | 7,466 | [
"no_license"
] | [
{
"path": "roles/os-init/tasks/main.yml",
"content": "---\n- name: Change nofile limits.\n lineinfile: dest=/etc/security/limits.conf line={{ item }}\n with_items:\n - '* - nofile 165535'\n - '* soft nofile 165535'\n - '* hard nofile 165535'\n tags: limits\n\n\n- name: Shutdwon selinux.\n repla... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1420,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/pinpoint-hbase-init | 7,466 | [
"no_license"
] | [
{
"path": "roles/pinpoint-hbase-init/handlers/main.yml",
"content": "---\n# handlers file for pinpoint-hbase-init",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 43
},
{
"path": "roles/pinpoint-hbase-init/defaults/main.yml",
"content": "---\n# defaults file for... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1204,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/pinpoint-server-ansible | 7,466 | [
"no_license"
] | [
{
"path": "roles/pinpoint-server-ansible/vars/collector.yml",
"content": "tomcat_catalina_port: \"{{pinpoint_collector_catalina_port}}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 61
},
{
"path": "roles/pinpoint-server-ansible/templates/pinpoint-web-server.x... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 14064,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/redis-ansible | 7,466 | [
"no_license"
] | [
{
"path": "roles/redis-ansible/handlers/main.yml",
"content": "---\n- name: redis restart\n service:\n name: \"{{ redis_service_name }}\"\n state: restarted\n tags:\n - redis\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 115
},
{
"path": "roles/redis... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 7241,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/rocket-chat | 7,466 | [
"no_license"
] | [
{
"path": "roles/rocket-chat/vars/RedHat.yml",
"content": "---\nrocket_chat_dep_packages:\n - nodejs\n - git\n - GraphicsMagick\n - make\n - wget\n\n\nrocket_chat_nginx_process_user: nginx\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 126
},
{
"path": "rol... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 15,
"total_bytes": 18886,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/swarm-agent | 7,466 | [
"no_license"
] | [
{
"path": "roles/swarm-agent/tasks/windows.yml",
"content": "---\n- name: Create Swarm directory\n win_file:\n path: \"{{ win_base_jenkins_path }}\"\n state: directory\n\n- name: Download the Jenkins Swarm Client\n win_get_url:\n url: \"{{ jenkins_swarm_download_url }}\"\n dest: \"{{ win_swarm... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 18613,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/tomcat8 | 7,466 | [
"no_license"
] | [
{
"path": "roles/tomcat8/tasks/main.yml",
"content": "---\n- stat: path=\"{{tomcat_home}}\"\n register: tomcat_home_folder\n\n- name: download tomcat {{tomcat8_download_url}}\n get_url: url=\"{{tomcat8_download_url}}\" dest=\"/tmp\" owner={{ user }} group={{ user_group }}\n when: tomcat_home_folder.stat.... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 170753,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/zabbix-front | 7,466 | [
"no_license"
] | [
{
"path": "roles/zabbix-front/handlers/main.yml",
"content": "---\n- name: restart nginx\n service: name=\"nginx\" state=\"restarted\"\n delegate_to: \"{{delegated_nginx_host}}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 110
},
{
"path": "roles/zabbix-fro... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4778,
"all_permissive": false
} |
ansible_role | zacker330/devops-platform | 54ee0103cea6169db290c1c1af475ade98e3cdf0 | 19 | roles/zookeeper-ansible-role | 7,466 | [
"no_license"
] | [
{
"path": "roles/zookeeper-ansible-role/templates/environment.j2",
"content": "\n# Modified from http://packages.ubuntu.com/saucy/zookeeperd\nNAME=zookeeper\nZOOKEEPER_HOME={{ zk_install_dir }}\nZOOCFGDIR={{ zookeeper_conf_dir }}\nZOODIR={{ zk_install_dir }}\n\nCLASSPATH=\"$ZOOCFGDIR:$ZOODIR/zookeeper-{{ zo... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 5457,
"all_permissive": false
} |
ansible_role | raghudevopsb70/roboshop-jenkins | 3fe97ae522937c841548d0231b05f3a30ade69b1 | 0 | roles/jenkins | 7,474 | [
"no_license"
] | [
{
"path": "roles/jenkins/tasks/mbranch-pipeline.yml",
"content": "- name: Check if Job exists or not - {{item.dir}}/{{item.name}}\n ansible.builtin.shell: java -jar /opt/jenkins-cli.jar -auth admin:{{jenkins_password}} -s http://172.31.7.18:8080 -webSocket get-job {{item.dir}}/{{item.name}}\n register: ou... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2445,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/celery | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/celery/tasks/main.yml",
"content": "---\n- name: Stop celery workers\n become: yes\n supervisorctl: >\n name={{project_name}}-{{ item.node_name }}\n state=stopped\n with_items: \"{{ celery.workers }}\"\n ignore_errors: yes\n tags:\n - stop\n - restart\n - never... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2093,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/django | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/django/handlers/main.yml",
"content": "---\n# - name: restart uvicorn\n# when: uvicorn is defined\n# become: yes \n# supervisorctl: >\n# name={{ project_name }}-{{ item.name }}-uvicorn:\n# state=restarted\n# with_items: \"{{ uvicorn }}\"\n# ignore_errors: yes\n\n... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4304,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/dot_env | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/dot_env/tasks/main.yml",
"content": "- name: Create .env file\n when:\n - dot_env_file.dest is defined \n - dot_env is defined\n become: yes\n become_user: \"{{ project_user }}\"\n template:\n src: env-file.template\n dest: \"{{ dot_env_file.dest }}\"\n owner: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 794,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/memcached | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/memcached/tasks/main.yml",
"content": "---\n- name: Install system packages\n become: yes\n apt: >\n pkg=memcached\n state=present\n update-cache=yes\n tags:\n - setup\n\n- name: Enable on boot\n become: yes\n systemd: >\n name=memcached\n enabled=yes\n s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 466,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/nginx | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/nginx/tasks/main.yml",
"content": "---\n# Install system packages and create logging paths\n- import_tasks: base.yml\n\n# Main workflow\n- name: Install nginx configuration file\n when: nginx.config is defined\n notify: restart nginx\n template: >\n src={{ item.config_templa... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1857,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/pipenv | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/pipenv/defaults/main.yml",
"content": "---\nlang: \"en_US.UTF-8\"\ndev_env: ''\nforce_install: ''",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 53
},
{
"path": "playbooks/roles/pipenv/tasks/main.yml",
"content": "---\n- name: Instal... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 787,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/postgres | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/postgres/tasks/main.yml",
"content": "---\n- name: Install Packages\n apt: >\n pkg={{ ['postgresql','postgresql-contrib','python3-psycopg2', 'libpq-dev', 'acl'] }}\n state=present\n update-cache=yes\n tags: \n - setup\n\n- name: Create Database User\n when: postgres... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1574,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/rabbitmq | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/rabbitmq/tasks/main.yml",
"content": "---\n- name: Install system packages\n become: yes\n apt: >\n pkg=rabbitmq-server\n state=present\n update-cache=yes\n tags:\n - setup\n\n- name: Create vhost\n when: rabbitmq is defined\n become: yes\n rabbitmq_vhost:\n n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1269,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/supervisor | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/supervisor/tasks/main.yml",
"content": "---\n- name: Install system packages\n become: yes\n apt: >\n pkg=supervisor\n state=present\n update-cache=yes\n tags:\n - packages\n\n- name: Enable on boot\n become: yes\n systemd: >\n name=supervisor\n enabled=yes\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 244,
"all_permissive": false
} |
ansible_role | bernardko/siplay | de3286f94909b85459e82bee897c9e6c4d8d53e0 | 0 | playbooks/roles/uvicorn | 7,474 | [
"no_license"
] | [
{
"path": "playbooks/roles/uvicorn/handlers/main.yml",
"content": "---\n- name: restart uvicorn\n when: uvicorn is defined\n become: yes\n supervisorctl: >\n name={{ project_name }}-{{ item.name }}-uvicorn:\n state=restarted\n with_items: \"{{ uvicorn }}\"",
"license_type": "no_license",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2367,
"all_permissive": false
} |
ansible_role | Otus-DevOps-2022-02/ekrasilnikov_infra | ac3c496364287757b656b227e9478be4b8a52372 | 0 | ansible/roles/db | 7,474 | [
"no_license"
] | [
{
"path": "ansible/roles/db/tasks/install_mongo.yml",
"content": " - name: Add transport https\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n state: present\n update_cache: yes\n tags: install\n\n - name: Add APT key\n apt_key:\n url: https://www.mo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 870,
"all_permissive": false
} |
ansible_role | BroccoliPower/ansible | 9b429ae1e8fa9a49111dfe3b290c1e0ac40660eb | 0 | roles/docker | 7,474 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n when: ansible_os_family == \"Debian\"\n\n- name: Install Docker\n apt:\n name:\n - docker.io\n state: present\n update_cache: yes\n when: ansible_os_family == \"Debian\"\n\n- ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 995,
"all_permissive": false
} |
ansible_role | BroccoliPower/ansible | 9b429ae1e8fa9a49111dfe3b290c1e0ac40660eb | 0 | roles/postgres | 7,474 | [
"no_license"
] | [
{
"path": "roles/postgres/tasks/main.yml",
"content": "- name: Install PostgreSQL\n apt:\n name: \"{{ postgresql_version }}\"\n state: present\n update_cache: yes\n\n- name: Create data directory for PostgreSQL\n file:\n path: \"{{ postgresql_data_dir }}\"\n state: directory\n\n- name: Star... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 327,
"all_permissive": false
} |
ansible_role | borcean/ansible-configs | cb9c13ffce3cb9b5599502543c44cc2176ee70bd | 0 | roles/base | 7,474 | [
"no_license"
] | [
{
"path": "roles/base/templates/ansible/pull_service.j2",
"content": "[Unit]\nDescription= Ansible pull service\n\n[Service]\nType=oneshot\nExecStart=/usr/bin/ansible-pull --vault-password-file={{ vault_file }} -o -U {{ repo }} -C {{ branch }}\n",
"license_type": "no_license",
"detected_licenses": [... | {
"task_files": 18,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 31,
"total_bytes": 23296,
"all_permissive": false
} |
ansible_role | borcean/ansible-configs | cb9c13ffce3cb9b5599502543c44cc2176ee70bd | 0 | roles/chromebook | 7,474 | [
"no_license"
] | [
{
"path": "roles/chromebook/tasks/main.yml",
"content": "- block:\n\n - import_tasks: chromebook_setup.yml\n - import_tasks: software/flathub.yml\n - import_tasks: software/vscode.yml\n\n rescue:\n - name: Set fact if task failed\n set_fact: task_failed=true\n",
"license_type": "no_license",
... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2435,
"all_permissive": false
} |
ansible_role | borcean/ansible-configs | cb9c13ffce3cb9b5599502543c44cc2176ee70bd | 0 | roles/macintosh | 7,474 | [
"no_license"
] | [
{
"path": "roles/macintosh/tasks/main.yml",
"content": "- name: Load distro-specific variables\n tags: always\n include_vars: \"{{ ansible_distribution }}.yml\"\n\n- block:\n ## install broadcom wifi driver\n - import_tasks: broadcom_wlan.yml\n when: broadcom_wlan | bool\n\n rescue:\n - name: Set f... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 605,
"all_permissive": false
} |
ansible_role | borcean/ansible-configs | cb9c13ffce3cb9b5599502543c44cc2176ee70bd | 0 | roles/server | 7,474 | [
"no_license"
] | [
{
"path": "roles/server/templates/docker/env.j2",
"content": "DATADIR={{ docker_setting.data_dir }}\nMEDIADIR={{ docker_setting.media_dir }}\nTZ=America/Los_Angeles\nPUID={{ docker_setting.PUID | default('1000') }}\nPGID={{ docker_setting.PGID | default('1000') }}",
"license_type": "no_license",
"de... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 17,
"total_bytes": 17102,
"all_permissive": false
} |
ansible_role | borcean/ansible-configs | cb9c13ffce3cb9b5599502543c44cc2176ee70bd | 0 | roles/thinkpad | 7,474 | [
"no_license"
] | [
{
"path": "roles/thinkpad/tasks/tlp.yml",
"content": "- name: thinkpad | tlp | add tlp repository (fedora)\n tags: thinkpad,repositories,tlp\n dnf:\n name: \"https://repo.linrunner.de/fedora/tlp/repos/releases/tlp-release.fc{{ ansible_distribution_major_version }}.noarch.rpm\"\n state: present\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2487,
"all_permissive": false
} |
ansible_role | borcean/ansible-configs | cb9c13ffce3cb9b5599502543c44cc2176ee70bd | 0 | roles/workstation | 7,474 | [
"no_license"
] | [
{
"path": "roles/workstation/vars/openSUSE Tumbleweed.yml",
"content": "deja_dup_package: deja-dup\ngnome_extensions_app_package: gnome-extensions\nfont_noto_emoji_package: noto-coloremoji-fonts\nlibvirt_client_package: libvirt-client\nnetworkmanager_openvpn_gnome_package: NetworkManager-openvpn-gnome\nstea... | {
"task_files": 19,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 26,
"total_bytes": 35270,
"all_permissive": false
} |
ansible_role | jbudz/ansible-kibana-test | c29329291071344e7bdaeb818085f1be718990de | 0 | roles/elasticsearch | 7,474 | [
"no_license"
] | [
{
"path": "roles/elasticsearch/tasks/main.yml",
"content": "---\n- name: install apt dependencies\n become: True\n apt: name={{ item }} update_cache=yes cache_valid_time=36000\n with_items:\n - openjdk-8-jre\n - python-pexpect\n\n- name: add elastic key\n apt_key: id=D88E42B4 url=https://artifacts... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1715,
"all_permissive": false
} |
ansible_role | jbudz/ansible-kibana-test | c29329291071344e7bdaeb818085f1be718990de | 0 | roles/kibana | 7,474 | [
"no_license"
] | [
{
"path": "roles/kibana/defaults/main.yml",
"content": "---\nkibana_plugins: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 23
},
{
"path": "roles/kibana/vars/main.yml",
"content": "---\nconfig_file: /etc/kibana/kibana.yml",
"license_type": "no_licens... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1032,
"all_permissive": false
} |
ansible_role | jbudz/ansible-kibana-test | c29329291071344e7bdaeb818085f1be718990de | 0 | roles/metricbeat | 7,474 | [
"no_license"
] | [
{
"path": "roles/metricbeat/handlers/main.yml",
"content": "---\n- name: restart metricbeat\n become: True\n service: name=metricbeat state=restarted\n ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 91
},
{
"path": "roles/metricbeat/tasks/main.yml",
"conte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 783,
"all_permissive": false
} |
ansible_role | giangngt/capstone_cloud_devops | 7da379894f487cb2d6b4c0204b51c2a2f30278d7 | 0 | ansible/roles/install-awscli | 7,474 | [
"no_license"
] | [
{
"path": "ansible/roles/install-awscli/tasks/main.yml",
"content": "---\n- name: \"Download AWS CLI\"\n shell: curl \"https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\" -o \"awscliv2.zip\"\n args:\n chdir: $HOME\n\n- name: \"Unzip\"\n shell: unzip awscliv2.zip\n args:\n chdir: $HOME\n\n- ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 296,
"all_permissive": false
} |
ansible_role | giangngt/capstone_cloud_devops | 7da379894f487cb2d6b4c0204b51c2a2f30278d7 | 0 | ansible/roles/install-kubectl | 7,474 | [
"no_license"
] | [
{
"path": "ansible/roles/install-kubectl/tasks/main.yml",
"content": "---\n- name: \"Download kubectl\"\n shell: curl -o kubectl https://amazon-eks.s3.us-west-2.amazonaws.com/1.19.6/2021-01-05/bin/linux/amd64/kubectl\n args:\n chdir: $HOME\n\n- name: \"Give permission\"\n shell: chmod +x ./kubectl\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 567,
"all_permissive": false
} |
ansible_role | MrBaykal/project-ansible-todo-app | 1dad9370df91f69eedc02c4ea2d4920869cb50ac | 0 | roles/docker | 7,474 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n# tasks file for docker\n - name: upgrade all packages\n ansible.builtin.yum:\n name: '*'\n state: latest\n # sudo yum update\n\n - name: remove older versions of docker if installed\n ansible.builtin.yum:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1186,
"all_permissive": false
} |
ansible_role | sempedia/distributed-django-iot | d3ad427c20459d8390dfb0f74060437e21c616d4 | 1 | ansible/roles/clone_repo | 7,474 | [
"no_license"
] | [
{
"path": "ansible/roles/clone_repo/vars/main.yaml",
"content": "---\r\n# vars file for clone_repo\r\ngithub_repo: https://github.com/sempedia/distributed-django-iot.git",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 100
},
{
"path": "ansible/roles/clone_repo/task... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4335,
"all_permissive": false
} |
ansible_role | sempedia/distributed-django-iot | d3ad427c20459d8390dfb0f74060437e21c616d4 | 1 | ansible/roles/services_config | 7,474 | [
"no_license"
] | [
{
"path": "ansible/roles/services_config/templates/celery-worker.service.j2",
"content": "[Unit]\r\nDescription=Celery Worker Service\r\nAfter=network.target\r\n\r\n[Service]\r\nUser={{ ansible_user }}\r\nGroup={{ ansible_user }}\r\nWorkingDirectory=/opt/app/src\r\nExecStart=/opt/env/bin/celery -A cfehome w... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3418,
"all_permissive": false
} |
ansible_role | sempedia/distributed-django-iot | d3ad427c20459d8390dfb0f74060437e21c616d4 | 1 | ansible/roles/unsync_django | 7,474 | [
"no_license"
] | [
{
"path": "ansible/roles/unsync_django/tasks/main.yaml",
"content": "---\r\n# tasks file for unsync_django\r\n- name: Ensure os deps removed\r\n apt:\r\n name: \r\n - libpq-dev\r\n - rsync\r\n update_cache: yes\r\n state: absent\r\n become: yes\r\n\r\n- name: Remove /opt/app directory\r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 519,
"all_permissive": false
} |
ansible_role | tigerpeng2001/elastic-graylog-logstash-filebeat | a79ddd08ffa10579e1b71785cacc0592a6718741 | 0 | roles/filebeat | 7,474 | [
"no_license"
] | [
{
"path": "roles/filebeat/templates/filebeat.yml.j2",
"content": "#=========================== Filebeat prospectors =============================\n\nfilebeat.prospectors:\n\n- input_type: log\n paths: /var/log/messages\n document_type: message\n fields:\n service: os \n environment: stage\n field... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1743,
"all_permissive": false
} |
ansible_role | newstead/ansible_test | 7af588c101b0cc1be81911acd155dc080cc02d61 | 0 | roles/cpu_management | 7,472 | [
"no_license"
] | [
{
"path": "roles/cpu_management/tasks/main.yml",
"content": "---\n- name: Disable C-states for CPUs\n lineinfile:\n path: /etc/default/grub\n regexp: '^GRUB_CMDLINE_LINUX_DEFAULT'\n line: 'GRUB_CMDLINE_LINUX_DEFAULT=\"intel_idle.max_cstate=0\"'\n\n # notify:\n # - update grub\n\n- name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 890,
"all_permissive": false
} |
ansible_role | newstead/ansible_test | 7af588c101b0cc1be81911acd155dc080cc02d61 | 0 | roles/encrypt_disk | 7,472 | [
"no_license"
] | [
{
"path": "roles/encrypt_disk/README.md",
"content": "# Encrypt Disk Role\n\nThis role encrypts the second disk on the server, sets it up, and mounts it.\n\n## Variables:\n- `second_disk`: The device path for the second disk (e.g., `/dev/sdb`).\n- `encrypted_disk_name`: The name used for the encrypted disk ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1381,
"all_permissive": false
} |
ansible_role | newstead/ansible_test | 7af588c101b0cc1be81911acd155dc080cc02d61 | 0 | roles/network_interface | 7,472 | [
"no_license"
] | [
{
"path": "roles/network_interface/tasks/main.yml",
"content": "---\n- name: Rename the active network interface to \"net0\"\n command: ip link set {{ ansible_default_ipv4.interface }} name net0\n register: rename_output\n\n- name: Show renamed network interface\n debug:\n var: rename_output.stdout\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 463,
"all_permissive": false
} |
ansible_role | bellhop/ansible-xo-server | 27b20325106bf3dc36ff5f79549dfad64bab5d81 | 0 | roles/install | 7,472 | [
"no_license"
] | [
{
"path": "roles/install/tasks/main.yml",
"content": "---\n- name: Set the hostname\n ansible.builtin.hostname:\n name: '{{ inventory_hostname }}'\n become: true\n tags:\n - install\n - hostname\n\n- name: Install the required packages for XO-Server\n ansible.builtin.dnf:\n name: '{{ item }}... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 6256,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/base-image | 7,472 | [
"no_license"
] | [
{
"path": "roles/base-image/tasks/main.yml",
"content": "---\n\n- set_fact:\n short_version: \"{{ version.split('.')[:2] | join('.') }}\"\n\n- name: Check for user {{ user_name }}\n shell: dscl . read /Users/{{ user_name }}\n register: user_check\n failed_when: user_check.rc == -1\n\n- name: Check for... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 8510,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/busybox | 7,472 | [
"no_license"
] | [
{
"path": "roles/busybox/tasks/main.yml",
"content": "---\n\n- name: Check for existing base image obuilder/base-image/busybox\n shell: zfs list -H -o name obuilder/base-image/busybox\n register: zfs_check\n failed_when: zfs_check.rc > 1\n\n- name: Delete existing base image obuilder/base-image/busybox\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1644,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/docker | 7,472 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n\n- name: Create a fake docker binary\n copy:\n dest: /usr/local/bin/docker\n content: |\n #!/bin/bash\n mode: '0755'\n become: yes\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 146
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 146,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/homebrew | 7,472 | [
"no_license"
] | [
{
"path": "roles/homebrew/tasks/main.yml",
"content": "---\n\n- name: Check if Homebrew is installed in {{ homebrew_prefix }}/bin/brew\n stat:\n path: \"{{ homebrew_prefix }}/bin/brew\"\n register: homebrew_check\n\n- name: Installing Homebrew\n shell: NONINTERACTIVE=1 /bin/bash -c \"$(curl -fsSL http... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1025,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/macos | 7,472 | [
"no_license"
] | [
{
"path": "roles/macos/tasks/main.yml",
"content": "---\n\n- name: Create sudo file for admin group\n copy:\n dest: \"/private/etc/sudoers.d/admin\"\n content: |\n %admin ALL=(ALL) NOPASSWD: ALL\n become: yes\n\n- name: Turn off Spotlight indexes for all volumes\n shell: mdutil -i off -d -a\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 697,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/monitor | 7,472 | [
"no_license"
] | [
{
"path": "roles/monitor/templates/monitor.sh",
"content": "#!/bin/sh\n\nif test -f {{ ansible_env.HOME }}/ocluster.log ; then\n\tkc=$(tail {{ ansible_env.HOME }}/ocluster.log | grep pkill | wc -l)\n\tif [ $kc -eq 10 ] ; then\n\t\tmv -f {{ ansible_env.HOME }}/ocluster.log {{ ansible_env.HOME }}/ocluster.old... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1159,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/ocaml | 7,472 | [
"no_license"
] | [
{
"path": "roles/ocaml/tasks/main.yml",
"content": "---\n\n- name: Initialise opam\n shell: opam init -y\n\n- name: Update Opam\n shell: opam update && opam upgrade -y\n\n- name: Install Dune\n shell: eval $(opam env) && opam install dune\n\n",
"license_type": "no_license",
"detected_licenses": [... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 182,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/ocluster | 7,472 | [
"no_license"
] | [
{
"path": "roles/ocluster/tasks/main.yml",
"content": "---\n\n- name: Create plist service file\n template:\n src: com.tarides.ocluster.worker.plist\n dest: \"/Library/LaunchDaemons/com.tarides.ocluster.worker.plist\"\n owner: root\n group: wheel\n mode: '0644'\n become: yes\n\n- name: Stop... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1401,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/reboot | 7,472 | [
"no_license"
] | [
{
"path": "roles/reboot/tasks/main.yml",
"content": "\n- name: Pause the worker\n shell: ci3-admin pause --wait macos-{{ ansible_architecture }} {{ inventory_hostname_short }}\n delegate_to: 127.0.0.1\n\n- name: Stop ocluster via launchctl\n shell: launchctl unload /Library/LaunchDaemons/com.tarides.oclu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 686,
"all_permissive": false
} |
ansible_role | ocurrent/macos-infra | 2d676b884b2d019c2092b74595e3c817187dca86 | 5 | roles/zfs | 7,472 | [
"no_license"
] | [
{
"path": "roles/zfs/tasks/main.yml",
"content": "---\n\n# ZFS always installs to /usr/local regardless of architecture\n\n- name: Check if ZFS is installed in {{ ansible_env.HOME }}/zfs exists\n stat:\n path: \"{{ ansible_env.HOME }}/zfs/bin/zfs\"\n register: zfs_check\n\n- name: Copy ZFS files from /... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 852,
"all_permissive": false
} |
ansible_role | jantzu95/ansible-automation | bde5b1aa4a111f9097d42aef7801131a07db7575 | 0 | roles/app | 7,472 | [
"no_license"
] | [
{
"path": "roles/app/tasks/main.yml",
"content": "---\n- name: Loo kaust rakendusele\n file:\n path: /home/janar1/app\n state: directory\n mode: '0755'\n\n- name: Lisa Docker Compose fail\n copy:\n dest: /home/janar1/app/docker-compose.yml\n content: |\n version: '3.8'\n services:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 569,
"all_permissive": false
} |
ansible_role | jantzu95/ansible-automation | bde5b1aa4a111f9097d42aef7801131a07db7575 | 0 | roles/common | 7,472 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: Uuenda süsteem ja paketid\n apt:\n update_cache: yes\n upgrade: dist\n\n- name: Installi vajalikud paketid\n apt:\n name:\n - htop\n - curl\n - vim\n - git\n state: present\n\n- name: Loo uus kasutaja\n user... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 365,
"all_permissive": false
} |
ansible_role | jantzu95/ansible-automation | bde5b1aa4a111f9097d42aef7801131a07db7575 | 0 | roles/docker | 7,472 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n- name: Installi vajalikud sõltuvused\n apt:\n name: \n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n state: present\n\n- name: Lisa Dockeri GPG võti\n shell: curl -fsSL https://downlo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 635,
"all_permissive": false
} |
ansible_role | jantzu95/ansible-automation | bde5b1aa4a111f9097d42aef7801131a07db7575 | 0 | roles/lamp | 7,472 | [
"no_license"
] | [
{
"path": "roles/lamp/tasks/main.yml",
"content": "---\n- name: Loo LAMP-stack kaust\n file:\n path: \"/home/{{ ansible_user }}/lamp-stack\"\n state: directory\n mode: '0755'\n\n- name: Kopeeri Docker Compose fail\n copy:\n src: \"files/docker-compose.yml\"\n dest: \"/home/{{ ansible_user }... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 646,
"all_permissive": false
} |
ansible_role | jantzu95/ansible-automation | bde5b1aa4a111f9097d42aef7801131a07db7575 | 0 | roles/logs | 7,472 | [
"no_license"
] | [
{
"path": "roles/logs/tasks/main.yml",
"content": "---\n- name: Kontrolli Nginxi logisid\n shell: \"tail -n 50 /var/log/nginx/access.log\"\n register: nginx_logs\n\n- name: Näita Nginxi viimaseid logisid\n debug:\n var: nginx_logs.stdout_lines\n\n- name: Kontrolli süsteemi logisid\n shell: \"journalc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 374,
"all_permissive": false
} |
ansible_role | jantzu95/ansible-automation | bde5b1aa4a111f9097d42aef7801131a07db7575 | 0 | roles/nginx | 7,472 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Installi Nginx\n apt:\n name: nginx\n state: present\n\n- name: Käivita Nginx\n service:\n name: nginx\n state: started\n enabled: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 155
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 155,
"all_permissive": false
} |
ansible_role | adeadedeji72/ansible-config-mgt | 1772957154eb6ff040705db9d8f4ec555ab60cd4 | 0 | roles/webserver | 7,472 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n- name: install apache\n become: true\n ansible.builtin.yum:\n name: \"httpd\"\n state: present\n\n- name: install git\n become: true\n ansible.builtin.yum:\n name: \"git\"\n state: present\n\n- name: clone a repo\n become: true\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 575,
"all_permissive": false
} |
ansible_role | tiagoades/ansible | c9cabfab1806260041471d7f6d94c3866d5d414e | 0 | roles/mysql | 7,472 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\n- name: 'Instalar pacotes do sistema operacional - mysql'\n apt:\n name:\n - mysql-server-5.6\n - python-mysqldb\n state: latest\n become: yes\n\n- name: 'Criar o banco de dados do wordpress_db'\n mysql_db:\n name: \"{{ wp_db_nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 699,
"all_permissive": false
} |
ansible_role | tiagoades/ansible | c9cabfab1806260041471d7f6d94c3866d5d414e | 0 | roles/webserver | 7,472 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n- name: 'Instalar pacotes do sistema operacional - wordpress'\n apt:\n update_cache: yes #Atualiza a lista de pacotes\n cache_valid_time: 3600 #\n name:\n - php5\n - apache2\n - libapache2-mod-php5\n - php5-gd\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 326,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.