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 | rossows/ec_launch | c1dd4ab43975ba69fbbc9040f5c5e8dd8b1dcdfb | 0 | playbook/roles/4_laravel | 7,413 | [
"no_license"
] | [
{
"path": "playbook/roles/4_laravel/tasks/main.yml",
"content": "---\n- name: laravel sorce code unarchive to tmp\n unarchive: src=\"{{ tarfile }}\" dest=\"{{ tardest }}\" owner=\"{{ httpuser }}\" group=\"{{ httpuser }}\"\n\n- name: chmod {{ pjdir }}\n shell: chmod -R 777 {{ pjdir }}\n\n- name: laravel co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1230,
"all_permissive": false
} |
ansible_role | youda313/CyberRangeAD | ef6a8d878098c64b5da1316407c164d347b638cf | 0 | ansible/roles/windows_common | 7,413 | [
"no_license"
] | [
{
"path": "ansible/roles/windows_common/tasks/main.yml",
"content": "---\n#- include: set-hostname.yml\n- include: windows-disable-defender.yml\n- include: windows-enable-ps-logging.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 114
},
{
"path": "ansible/rol... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 217,
"all_permissive": false
} |
ansible_role | afrazkhan/auto-ecs | fbc685276bebcab5a4e9a78db0b642030c76342f | 0 | roles/aws | 7,413 | [
"no_license"
] | [
{
"path": "roles/aws/vars/main.yml",
"content": "region: eu-west-1\nvpc:\n cidr: 10.50.0.0/16\n subnet: 10.50.1.0/24\n az: eu-west-1a\n tag: \"Pipeline\"\n routes:\n everything: 0.0.0.0/0\n gw: igw\ndefault_ami: ami-b0ac25c3\ninstance_size: t2.medium\nssh_keyname: afraz\nlc_name: pipeline_ecs\nas... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4115,
"all_permissive": false
} |
ansible_role | afrazkhan/auto-ecs | fbc685276bebcab5a4e9a78db0b642030c76342f | 0 | roles/ecs | 7,413 | [
"no_license"
] | [
{
"path": "roles/ecs/tasks/main.yml",
"content": "- name: Create ECS Cluster\n ecs_cluster:\n name: \"{{ cluster_name }}\"\n state: present\n\n- name: Create ECS Task Definition\n ecs_taskdefinition:\n region: \"{{ region }}\"\n family: \"{{ task_name }}\"\n state: present\n containers: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1554,
"all_permissive": false
} |
ansible_role | jistr/2021-10-hackfest-directord | 97567d6bd3aa1b15871247c48c0bfc5b034160c1 | 0 | vagrant/ansible/roles/hf_directord | 7,407 | [
"no_license"
] | [
{
"path": "vagrant/ansible/roles/hf_directord/tasks/prereqs.yml",
"content": "- name: install packages for the hackfest\n ansible.builtin.package:\n name:\n - git\n - gcc\n - python3-pip\n - python3-devel\n - tmux\n state: present\n\n- name: create stack user\n ansible.built... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 452,
"all_permissive": false
} |
ansible_role | 3ndlsn3ar/3ndsible | e75ec84cfd9d74dd79611062b4b950f36b099083 | 0 | roles/x-webberz | 7,407 | [
"no_license"
] | [
{
"path": "roles/x-webberz/tasks/nginx-base.yml",
"content": "---\n\n\n - name: transfer fontconfig-2\n copy: src=rpms/ngin_base/fontconfig-2.10.95-10.el7.x86_64.rpm dest=/tmp/fontconfig-2.10.95-10.el7.x86_64.rpm\n\n - name: install fontconfig-2\n yum: name=/tmp/fontconfig-2.10.95-10.el7.x86_64.rpm stat... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 6509,
"all_permissive": false
} |
ansible_role | tanish-kr/Sample-ansible-rails-app | 625b3d0abfeef99db92ecbe32129ae5c7281e34b | 1 | roles/nginx | 7,407 | [
"no_license"
] | [
{
"path": "roles/nginx/templates/unicorn-app.nginx.j2",
"content": "upstream unicorn {\n server unix:{{ unicorn_sock }};\n}\n\nserver {\n listen 80;\n server_name localhost;\n\n access_log /var/log/nginx/rails_access.log;\n error_log /var/log/nginx/rails_error.log;\n\n root {{ rails_root }};\n\n erro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1240,
"all_permissive": false
} |
ansible_role | tanish-kr/Sample-ansible-rails-app | 625b3d0abfeef99db92ecbe32129ae5c7281e34b | 1 | roles/postgresql | 7,407 | [
"no_license"
] | [
{
"path": "roles/postgresql/tasks/main.yml",
"content": "---\n- name: install postgresql\n yum: name={{ item }} state=latest\n with_items:\n - postgresql-server\n - postgresql-devel\n - postgresql-contrib\n - python-psycopg2\n - libselinux-python\n\n- name: postgresql initdb\n shell: servi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1122,
"all_permissive": false
} |
ansible_role | tanish-kr/Sample-ansible-rails-app | 625b3d0abfeef99db92ecbe32129ae5c7281e34b | 1 | roles/ruby | 7,407 | [
"no_license"
] | [
{
"path": "roles/ruby/files/rbenv.sh",
"content": "export RBENV_ROOT=\"/usr/local/share/rbenv\"\nexport PATH=\"/usr/local/share/rbenv/bin:$PATH\"\nif which rbenv > /dev/null; then eval \"$(rbenv init -)\"; fi\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 150
},
{
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2495,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/cert | 7,407 | [
"no_license"
] | [
{
"path": "roles/cert/templates/csr.json.j2",
"content": "{\n \"CN\": \"{{ item.cn }}\",\n \"key\": {\n \"algo\": \"rsa\",\n \"size\": 2048\n },\n \"names\": [\n {\n \"C\": \"CN\",\n \"L\": \"BeiJing\",\n \"ST\": \"BeiJing\",\n{% if item.grou... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 11445,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/containerd | 7,407 | [
"no_license"
] | [
{
"path": "roles/containerd/templates/config.toml.j2",
"content": "# https://github.com/containerd/containerd/blob/main/docs/cri/config.md\nversion = 2\nroot = \"{{ CONTAINERD_ROOT_DIR }}\"\nstate = \"/run/containerd\"\n\n[plugins]\n [plugins.\"io.containerd.grpc.v1.cri\"]\n sandbox_image = \"{{ POD_INF... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2378,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/coredns | 7,407 | [
"no_license"
] | [
{
"path": "roles/coredns/tasks/main.yml",
"content": "# https://github.com/coredns/deployment/tree/master/kubernetes\n\n- name: Prepare k8s install dirs\n file:\n name: \"{{ YAML_GEN_DIR }}\"\n state: directory\n\n- name: Create coredns.yaml\n shell: dos2unix deploy.sh && bash deploy.sh -i {{ DNS_SE... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 556,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/dashboard | 7,407 | [
"no_license"
] | [
{
"path": "roles/dashboard/templates/dashboard-ingress.yaml.j2",
"content": "apiVersion: networking.k8s.io/v1\nkind: Ingress\nmetadata:\n annotations:\n nginx.ingress.kubernetes.io/force-ssl-redirect: \"true\"\n nginx.ingress.kubernetes.io/rewrite-target: /\n nginx.ingress.kubernetes.io/ssl-passth... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1990,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/etcd | 7,407 | [
"no_license"
] | [
{
"path": "roles/etcd/tasks/main.yml",
"content": "---\n- name: Add etcd user\n ansible.builtin.user:\n name: etcd\n comment: \"Etcd User\"\n createhome: no\n system: yes\n shell: /sbin/nologin\n\n- name: Prepare etcd conf dirs\n file:\n name: \"{{ item }}\"\n state: directory\n ow... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3299,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/ext-lb | 7,407 | [
"no_license"
] | [
{
"path": "roles/ext-lb/tasks/main.yml",
"content": "---\n# https://github.com/kubernetes/kubeadm/blob/master/docs/ha-considerations.md\n- include: centos.yml\n when: 'ansible_distribution in [\"CentOS\",\"RedHat\"]'\n\n- include: ubuntu.yml\n when: 'ansible_distribution in [\"Ubuntu\",\"Debian\"]'\n\n- n... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 6243,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/ingress-nginx | 7,407 | [
"no_license"
] | [
{
"path": "roles/ingress-nginx/templates/deploy.yaml.j2",
"content": "apiVersion: v1\nkind: Namespace\nmetadata:\n labels:\n app.kubernetes.io/instance: ingress-nginx\n app.kubernetes.io/name: ingress-nginx\n name: ingress-nginx\n---\napiVersion: v1\nautomountServiceAccountToken: true\nkind: Service... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 17718,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/kube-calico | 7,407 | [
"no_license"
] | [
{
"path": "roles/kube-calico/tasks/main.yml",
"content": "- name: Prepare k8s install dirs\n file:\n name: \"{{ YAML_GEN_DIR }}/calico\"\n state: directory\n\n- name: Create calico yaml\n template:\n src: \"{{ item }}.j2\"\n dest: \"{{ YAML_GEN_DIR }}/calico/{{ item }}\"\n with_items:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 236100,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/kube-client | 7,407 | [
"no_license"
] | [
{
"path": "roles/kube-client/templates/clusterrolebindings.yaml.j2",
"content": "---\n# https://kubernetes.io/zh/docs/reference/access-authn-authz/bootstrap-tokens/\n\napiVersion: v1\nkind: Secret\nmetadata:\n name: bootstrap-token-{{ BOOTSTRAP_TOKEN_ID }}\n namespace: kube-system\ntype: bootstrap.kuberne... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4774,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/kube-flannel | 7,407 | [
"no_license"
] | [
{
"path": "roles/kube-flannel/tasks/main.yml",
"content": "- name: Prepare k8s install dirs\n file:\n name: \"{{ YAML_GEN_DIR }}\"\n state: directory\n\n- name: Create kube-flannel.yml\n template:\n src: kube-flannel.yml.j2\n dest: \"{{ YAML_GEN_DIR }}/kube-flannel.yml\"\n\n- name: deploy kube... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 321,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/kube-master | 7,407 | [
"no_license"
] | [
{
"path": "roles/kube-master/templates/kube-apiserver.service.j2",
"content": "[Unit]\nDescription=Kubernetes API Server\nDocumentation=https://github.com/kubernetes/kubernetes\n\n[Service]\nEnvironmentFile=-/etc/kubernetes/kube-apiserver\nExecStart=/usr/local/bin/kube-apiserver $KUBE_APISERVER_OPTS\nRestar... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 8245,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/kube-node | 7,407 | [
"no_license"
] | [
{
"path": "roles/kube-node/templates/kube-lb.conf.j2",
"content": "user nginx;\nworker_processes auto;\n\nerror_log /var/log/nginx/error.log warn;\npid /var/run/nginx.pid;\n\nevents {\n worker_connections 3000;\n}\n\nstream {\n upstream apiservers {\n{% for master in groups['kube_master'] %... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 8090,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/metrics-server | 7,407 | [
"no_license"
] | [
{
"path": "roles/metrics-server/tasks/main.yml",
"content": "- name: Prepare k8s install dirs\n file:\n name: \"{{ YAML_GEN_DIR }}\"\n state: directory\n\n- name: Copy deploy yaml\n template:\n src: components.yaml.j2\n dest: \"{{ YAML_GEN_DIR }}/metrics-server.yaml\"\n\n- name: create metrics... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 587,
"all_permissive": false
} |
ansible_role | Paper-Dragon/ansible_k8s | 73a9a2926c10e89e63fd15602c1f79fd5911ee3f | 1 | roles/prepare | 7,407 | [
"no_license"
] | [
{
"path": "roles/prepare/tasks/main.yml",
"content": "---\n- name: show hosts information\n debug:\n msg: \"{{ ansible_distribution }}-{{ ansible_distribution_major_version }}-{{ ansible_distribution_release }}\"\n\n- include: centos.yml\n when: 'ansible_distribution in [\"CentOS\",\"RedHat\"]'\n\n- in... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1492,
"all_permissive": false
} |
ansible_role | madson7/uptime | 818447812b79e831f91db38380ab833897155ce8 | 0 | roles/uptime | 7,407 | [
"no_license"
] | [
{
"path": "roles/uptime/tasks/main.yml",
"content": "---\n# tasks file for uptime\n- include_tasks: uptime.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 56
},
{
"path": "roles/uptime/tasks/uptime.yml",
"content": "---\n- name: Uptime\n shell: uptime\n ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 196,
"all_permissive": false
} |
ansible_role | jvzantvoort/ansible-collection-jdc-services | f6a9929c84cc627d3cbf18b9dcdb409ef99a29ee | 0 | roles/apache | 7,407 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "---\n- name: Generic OS package manager\n ansible.builtin.package:\n name: httpd\n state: present\n\n- name: Manage service\n ansible.builtin.service:\n name: httpd\n enabled: true\n state: started\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 206,
"all_permissive": false
} |
ansible_role | MendozaJRL/CPE232_MendozaExperiment9 | 0e7028a64ea4fce5d14e01444112c2dd8bf8b99b | 0 | roles/prometheus | 7,407 | [
"no_license"
] | [
{
"path": "roles/prometheus/tasks/main.yml",
"content": "---\n# tasks file for roles/prometheus\n\n- name: Execute install_Prometheus_Ubuntu.yml\n ansible.builtin.include_tasks:\n file: install_Prometheus_Ubuntu.yml\n\n- name: Execute install_Prometheus_CentOS.yml\n ansible.builtin.include_tasks:\n ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2104,
"all_permissive": false
} |
ansible_role | nareshagrawal/Uber | 6242e7708987dad6664d45c4c0a78ca08c9be415 | 7 | Jenkins/roles/create | 7,407 | [
"no_license"
] | [
{
"path": "Jenkins/roles/create/defaults/main.yml",
"content": "---\n# defaults file for create\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 31
},
{
"path": "Jenkins/roles/create/vars/main.yml",
"content": "---\n# vars file for create\n\nregion: \"us-east-... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2962,
"all_permissive": false
} |
ansible_role | nareshagrawal/Uber | 6242e7708987dad6664d45c4c0a78ca08c9be415 | 7 | Jenkins/roles/jenkins | 7,407 | [
"no_license"
] | [
{
"path": "Jenkins/roles/jenkins/tasks/install_docker.yml",
"content": "---\n- name: Update and upgrade apt packages\n become: true\n apt:\n upgrade: yes\n update_cache: yes\n\n- name: Docker Installation - adding docker repository\n shell: | \n sudo apt-get update\n sudo apt-get instal... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3047,
"all_permissive": false
} |
ansible_role | nareshagrawal/Uber | 6242e7708987dad6664d45c4c0a78ca08c9be415 | 7 | Jenkins/roles/terminate | 7,407 | [
"no_license"
] | [
{
"path": "Jenkins/roles/terminate/defaults/main.yml",
"content": "---\n# defaults file for terminate",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "Jenkins/roles/terminate/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: r... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2027,
"all_permissive": false
} |
ansible_role | ne-bknn/keycloak-distributed | c0d9370e8c1aff4a7164987dc445c7264e15f635 | 0 | ansible/roles/keycloak-install | 7,407 | [
"no_license"
] | [
{
"path": "ansible/roles/keycloak-install/tasks/main.yml",
"content": "- name: Create directory for keycloak\n ansible.builtin.file:\n path: /home/{{ ansible_user }}/keycloak\n state: directory\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n mode: \"0755\"\n when: inventor... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3860,
"all_permissive": false
} |
ansible_role | ne-bknn/keycloak-distributed | c0d9370e8c1aff4a7164987dc445c7264e15f635 | 0 | ansible/roles/registry-install | 7,407 | [
"no_license"
] | [
{
"path": "ansible/roles/registry-install/tasks/main.yml",
"content": "- name: Run registry service\n ansible.builtin.command: docker service create --name registry --publish published=5000,target=5000 registry:2\n become: true\n when: inventory_hostname == 'server-0'\n failed_when: false\n ignore_erro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 241,
"all_permissive": false
} |
ansible_role | ne-bknn/keycloak-distributed | c0d9370e8c1aff4a7164987dc445c7264e15f635 | 0 | ansible/roles/swarm-init | 7,407 | [
"no_license"
] | [
{
"path": "ansible/roles/swarm-init/tasks/main.yml",
"content": "---\n- name: Install python3-docker\n ansible.builtin.apt:\n name: python3-docker\n state: present\n update_cache: true\n become: true\n\n- name: Init swarm on the first node\n community.general.docker_swarm:\n state: present\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 866,
"all_permissive": false
} |
ansible_role | ne-bknn/keycloak-distributed | c0d9370e8c1aff4a7164987dc445c7264e15f635 | 0 | ansible/roles/traefik-install | 7,407 | [
"no_license"
] | [
{
"path": "ansible/roles/traefik-install/files/docker-compose.yml",
"content": "services:\n traefik:\n image: traefik:latest\n command:\n - \"--api\"\n - \"--api.dashboard=true\"\n - \"--api.insecure=true\"\n - \"--providers.docker=true\"\n - \"--providers.docker.exposedbydef... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1957,
"all_permissive": false
} |
ansible_role | ks1205/devops | f0889559d6dbe49d7dbb08ab8ae466ead3631161 | 0 | ansible/e2eproject/roles/tomcat_aws | 7,407 | [
"no_license"
] | [
{
"path": "ansible/e2eproject/roles/tomcat_aws/tasks/aws-ec2.yml",
"content": "---\n- name: create an EC2 Instance\n ec2:\n key_name: \"{{ keypair }}\"\n aws_access_key: \"{{ my_access_key }}\"\n aws_secret_key: \"{{ my_secret_key }}\"\n group: \"AWS-demo-RHEL7.5-security-group\"\n instance_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1189,
"all_permissive": false
} |
ansible_role | levmichael3/cloudlock-task | 28bac448b6fcc6efcf511aa35ce82c4376c673c8 | 0 | roles/common | 7,407 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n - name: Create a security group\n local_action:\n module: ec2_group\n name: \"{{ ec2_sg }}\"\n description: Basic security Group for Servers\n region: \"{{ ec2_region }}\"\n vpc_id: \"{{ ec2_vpc_id }}\"\n rules:\n - p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1530,
"all_permissive": false
} |
ansible_role | levmichael3/cloudlock-task | 28bac448b6fcc6efcf511aa35ce82c4376c673c8 | 0 | roles/update-os | 7,407 | [
"no_license"
] | [
{
"path": "roles/update-os/tasks/main.yml",
"content": "---\n - name: Check if there are packages available for install/upgrade\n command: /usr/lib/update-notifier/apt-check --package-names\n register: packages\n - name: Upgrade all packages to the latest version\n apt: update_cache=yes upgrade=dist\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 277,
"all_permissive": false
} |
ansible_role | levmichael3/cloudlock-task | 28bac448b6fcc6efcf511aa35ce82c4376c673c8 | 0 | roles/verify_nginx | 7,407 | [
"no_license"
] | [
{
"path": "roles/verify_nginx/tasks/main.yml",
"content": "---\n - name: Browse to Nginx health page and verify if Nginx is up\n action: uri url=http://{{ inventory_hostname }}/health return_content=yes\n register: webpage\n\n - fail: msg='service is not happy'\n when: \"'Everything works {{env}}' not... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 263,
"all_permissive": false
} |
ansible_role | levmichael3/cloudlock-task | 28bac448b6fcc6efcf511aa35ce82c4376c673c8 | 0 | roles/webserver | 7,407 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n- name: NGINX | Adding NGINX signing key\n apt_key: url=http://nginx.org/keys/nginx_signing.key state=present\n \n- name: NGINX | Adding sources.list deb url for NGINX\n lineinfile: dest=/etc/apt/sources.list line=\"deb http://nginx.org/packages... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1071,
"all_permissive": false
} |
ansible_role | MaroClay155/Marwan_CICD_Udapeople1 | 714caee02b2948f535d0cc800896d2595afcb4e2 | 0 | .circleci/ansible/roles/configureprometheusnodeexporter | 7,411 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/configureprometheusnodeexporter/tasks/main.yml",
"content": "---\n- name: \"install node_exporter\"\n shell: |\n sudo useradd --no-create-home node_exporter\n wget https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 717,
"all_permissive": false
} |
ansible_role | MaroClay155/Marwan_CICD_Udapeople1 | 714caee02b2948f535d0cc800896d2595afcb4e2 | 0 | .circleci/ansible/roles/deploy | 7,411 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/deploy/tasks/main.yml",
"content": "---\n- name: \"creates backend app directory.\"\n file:\n path: ~/backend-app\n state: directory\n- name: \"unarchive backend files\"\n unarchive:\n src: artifact.tar.gz\n dest: ~/backend-app\n- name: \"install node depende... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 684,
"all_permissive": false
} |
ansible_role | MaroClay155/Marwan_CICD_Udapeople1 | 714caee02b2948f535d0cc800896d2595afcb4e2 | 0 | .circleci/ansible/roles/deploy-prometheus | 7,411 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/deploy-prometheus/files/prometheus.yml",
"content": "# my global config\nglobal:\n scrape_interval: 60s # Set the scrape interval to every 15 seconds. Default is every 1 minute.\n evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3510,
"all_permissive": false
} |
ansible_role | GoKEV/ansible-tower-ami-deploy | 67921826ddced89f3b87bb93299d640b16fc4f32 | 0 | roles/LimeLight-ServerCheckin | 7,411 | [
"no_license"
] | [
{
"path": "roles/LimeLight-ServerCheckin/tasks/main.yml",
"content": "---\n\n- name: \"Check in as a Tower server... we are a {{ ll_application }} server\"\n uri:\n url: \"http://{{ tzero_ip }}:9999/api/addtower/{{ ll_userid }}/\"\n when: ll_application == \"Tower\"\n\n- name: Check URL DEBUG for a Tow... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 917,
"all_permissive": false
} |
ansible_role | GoKEV/ansible-tower-ami-deploy | 67921826ddced89f3b87bb93299d640b16fc4f32 | 0 | roles/LimeLight-ShutdownTime | 7,411 | [
"no_license"
] | [
{
"path": "roles/LimeLight-ShutdownTime/defaults/main.yml",
"content": "---\n\n# Shutdown time in minutes\n#\t1440 = 24 hours\n#\t2160 = 36 hours\n#\t2880 = 48 hours\n\nsystem_shutdown: 90\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 107
},
{
"path": "roles/Li... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 355,
"all_permissive": false
} |
ansible_role | GoKEV/ansible-tower-ami-deploy | 67921826ddced89f3b87bb93299d640b16fc4f32 | 0 | roles/LimeLight-TowerBaseline | 7,411 | [
"no_license"
] | [
{
"path": "roles/LimeLight-TowerBaseline/tasks/tower_settings.yml",
"content": "---\n- name: \"Admin credentials - {{ tzero_user }} / {{ tzero_pass }}\"\n raw: \"tower-manage update_password --username {{ tzero_user }} --password {{ tzero_pass }}\"\n failed_when: False\n ignore_errors: yes\n no_log: Tru... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1210,
"all_permissive": false
} |
ansible_role | GoKEV/ansible-tower-ami-deploy | 67921826ddced89f3b87bb93299d640b16fc4f32 | 0 | roles/LimeLight-TowerContent | 7,411 | [
"no_license"
] | [
{
"path": "roles/LimeLight-TowerContent/files/deck-ansible/html_slides/106-HandlerTasks/400__Example_Handler_Task_in_a_Play.html",
"content": "<section data-transition=\"slide\" id=\"Handler-Terminal\">\n <h2>Example Handler Task in a Play</h2>\n\t<div class=\"terminal space shadow\">\n\t\t<div class=\"top... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 31,
"total_bytes": 47930,
"all_permissive": false
} |
ansible_role | GoKEV/ansible-tower-ami-deploy | 67921826ddced89f3b87bb93299d640b16fc4f32 | 0 | roles/deploy-tower-ami | 7,411 | [
"no_license"
] | [
{
"path": "roles/deploy-tower-ami/tasks/main.yml",
"content": "---\n- name: \"Provision {{ ll_ec2srvname }}\"\n ec2:\n aws_access_key: \"{{ user_awskey | default(omit) }}\"\n aws_secret_key: \"{{ user_awssec | default(omit) }}\"\n key_name: \"{{ user_sshkey }}\"\n group_id: \"{{ user_secgrpid }... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2105,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/cm_agents | 7,411 | [
"no_license"
] | [
{
"path": "roles/cm_agents/tasks/main.yml",
"content": "---\n\n- name: Apply temporary workaround for Cloudera Manager issue OPSAPS-36322\n include: 36322.yml\n\n- name: Install Cloudera Manager Agents\n yum:\n name:\n - cloudera-manager-daemons\n - cloudera-manager-agent\n update_cache: yes\n... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3174,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/cm_repo | 7,411 | [
"no_license"
] | [
{
"path": "roles/cm_repo/tasks/main.yml",
"content": "---\n\n- name: Add Cloudera Manager yum repository\n yum_repository:\n name: cloudera-manager\n description: Cloudera Manager\n baseurl: \"{{ scm_repo_url }}\"\n gpgkey: \"{{ scm_repo_gpgkey }}\"\n gpgcheck: yes\n enabled: yes\n when:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 284,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/epel | 7,411 | [
"no_license"
] | [
{
"path": "roles/epel/tasks/main.yml",
"content": "---\n\n- name: Add EPEL GPG key\n rpm_key:\n key: http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7\n state: present\n\n- stat:\n path: /etc/yum.repos.d/epel.repo\n register: epel_exists\n\n- name: Add EPEL yum repository\n yum_repository:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 512,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/java | 7,411 | [
"no_license"
] | [
{
"path": "roles/java/tasks/install_jce_from_zip.yml",
"content": "---\n\n- name: Install unzip package\n package:\n name:\n - unzip\n state: installed\n\n- name: Copy JCE policy zip to temp directory\n copy:\n src: \"{{java_jce_location}}\"\n dest: \"{{ tmp_dir }}/jce.zip\"\n remote_src... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4543,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/mariadb | 7,411 | [
"no_license"
] | [
{
"path": "roles/mariadb/handlers/main.yml",
"content": "---\n# Handlers for MariaDB.\n\n- name: restart mariadb\n service:\n name: mariadb\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 103
},
{
"path": "roles/mariadb/tasks/databases.y... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3386,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/mysql_connector | 7,411 | [
"no_license"
] | [
{
"path": "roles/mysql_connector/tasks/main.yml",
"content": "---\n\n- name: Create /usr/share/java directory\n file:\n path: /usr/share/java\n state: directory\n mode: 0755\n\n- name: Install unzip package\n package:\n name:\n - unzip\n state: installed\n\n- stat:\n path: /usr/share/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1070,
"all_permissive": false
} |
ansible_role | cloudera/cloudera-playbook | 82698556b7a1a3985c6673254e05d1e51a3db694 | 198 | roles/rngd | 7,411 | [
"no_license"
] | [
{
"path": "roles/rngd/handlers/main.yaml",
"content": "---\n# Handlers for rngd.\n\n- name: restart rngd\n service:\n name: rngd\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 94
},
{
"path": "roles/rngd/tasks/main.yml",
"content": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 450,
"all_permissive": false
} |
ansible_role | willie-de-klerk/cos731_fa2_project | 03b0e0ee0dda833dea6315390e5fcb1ca58f288f | 0 | roles/debiancommon | 7,411 | [
"no_license"
] | [
{
"path": "roles/debiancommon/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - debiancommon\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "roles/debiancommon/tasks/dns.yml",
"content": "---\n- name: ... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 1376,
"all_permissive": false
} |
ansible_role | willie-de-klerk/cos731_fa2_project | 03b0e0ee0dda833dea6315390e5fcb1ca58f288f | 0 | roles/fw | 7,411 | [
"no_license"
] | [
{
"path": "roles/fw/tasks/apt.yml",
"content": "---\n# Wordpress Install Requirements according to https://wiki.debian.org/WordPress\n- name: Install curl, wordpress and apache2\n ansible.builtin.apt:\n pkg:\n - wordpress\n - curl\n - apache2\n - ufw\n\n- name: Remove dependencies t... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 3625,
"all_permissive": false
} |
ansible_role | willie-de-klerk/cos731_fa2_project | 03b0e0ee0dda833dea6315390e5fcb1ca58f288f | 0 | roles/lb | 7,411 | [
"no_license"
] | [
{
"path": "roles/lb/tasks/main.yml",
"content": "---\n# tasks file for lb\n\n- name: Configure APT packages\n import_tasks: apt.yml\n\n- name: Configure the sysctl.conf file\n import_tasks: sysctl.yml\n\n- name: Configure IPtables\n import_tasks: iptables.yml\n\n- name: Keepalived\n import_tasks: keepal... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3580,
"all_permissive": false
} |
ansible_role | willie-de-klerk/cos731_fa2_project | 03b0e0ee0dda833dea6315390e5fcb1ca58f288f | 0 | roles/sql | 7,411 | [
"no_license"
] | [
{
"path": "roles/sql/defaults/main.yml",
"content": "---\n# defaults file for sql\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "roles/sql/tasks/main.yml",
"content": "---\n# tasks file for sql\n\n- name: apt tasks\n import_tasks: apt.yml\n... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 2241,
"all_permissive": false
} |
ansible_role | TiffanyNgono/cd | c36123b29032d495e4eb50e8d56c8d1ff8dba729 | 0 | ansible/roles/docker-registry | 7,411 | [
"no_license"
] | [
{
"path": "ansible/roles/docker-registry/tasks/main.yml",
"content": "---\n# tasks file for docker-registry\n- name: Tag and push to docker hub\n docker_login:\n username: ngononsamarietiffany\n password: <PASSWORD>\n \n- name: Tag and push to docker hub\n docker_image:\n name: myappl:latest\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 299,
"all_permissive": false
} |
ansible_role | bettabox2/test-infra | 01cebd5adca06b3dbbd7cf68d456f669247f694b | 0 | ansible/roles/docker-build | 7,411 | [
"no_license"
] | [
{
"path": "ansible/roles/docker-build/tasks/main.yml",
"content": "---\n# tasks file for docker-build\n- name: Build image and with build args\n docker_image:\n name: \"{repo_url}/zabbix-psql\"\n tag: latest\n build:\n path: ../../files/zabbix-psql\n args:\n log_volume: /var/log/z... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 594,
"all_permissive": false
} |
ansible_role | bettabox2/test-infra | 01cebd5adca06b3dbbd7cf68d456f669247f694b | 0 | ansible/roles/software_setup | 7,411 | [
"no_license"
] | [
{
"path": "ansible/roles/software_setup/tasks/main.yaml",
"content": "---\n- name: install pkg\n pkg:\n - git\n - docker.io\n - postgres-client\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 96
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 96,
"all_permissive": false
} |
ansible_role | bettabox2/test-infra | 01cebd5adca06b3dbbd7cf68d456f669247f694b | 0 | ansible/roles/terraform_run | 7,411 | [
"no_license"
] | [
{
"path": "ansible/roles/terraform_run/tasks/main.yml",
"content": "---\n# tasks file for terraform_run\n- name: run terraform\n terraform:\n project_path: '../terraform/'\n state: \"{{ state }}\"\n force_init: true\n backend_config:\n region: \"{aws_region}\"\n variables:\n aws_in... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 228,
"all_permissive": false
} |
ansible_role | mpetrive-rh/tower-saml-lab | 7f68a35161b1e04dcaabdc5a9067b5cd714ca0df | 3 | roles/onelogin_app | 7,411 | [
"no_license"
] | [
{
"path": "roles/onelogin_app/vars/main.yml",
"content": "---\n# vars file for onelogin_app\nonelogin_app_saml_test_connector_adv_id: 110016\nonelogin_app_saml_test_connector_attr_id: 42657\nonelogin_app_api: api/2/apps\nonelogin_priv_api: api/1/privileges\n",
"license_type": "no_license",
"detected... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 11572,
"all_permissive": false
} |
ansible_role | mpetrive-rh/tower-saml-lab | 7f68a35161b1e04dcaabdc5a9067b5cd714ca0df | 3 | roles/onelogin_role | 7,411 | [
"no_license"
] | [
{
"path": "roles/onelogin_role/defaults/main.yml",
"content": "---\n# defaults file for onelogin_role\n\nonelogin_role_api: api/1/roles\n#onelogin_role_default_role: tower-role\nonelogin_role_default_role: Default\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 146
},
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1318,
"all_permissive": false
} |
ansible_role | mpetrive-rh/tower-saml-lab | 7f68a35161b1e04dcaabdc5a9067b5cd714ca0df | 3 | roles/onelogin_token | 7,411 | [
"no_license"
] | [
{
"path": "roles/onelogin_token/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - onelogin_token",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 72
},
{
"path": "roles/onelogin_token/handlers/main.yml",
"content": "---\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1726,
"all_permissive": false
} |
ansible_role | mpetrive-rh/tower-saml-lab | 7f68a35161b1e04dcaabdc5a9067b5cd714ca0df | 3 | roles/onelogin_user | 7,411 | [
"no_license"
] | [
{
"path": "roles/onelogin_user/handlers/main.yml",
"content": "---\n# handlers file for onelogin_user",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 37
},
{
"path": "roles/onelogin_user/tasks/main.yml",
"content": "---\n# tasks file for onelogin_user\n\n- bloc... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 5977,
"all_permissive": false
} |
ansible_role | mpetrive-rh/tower-saml-lab | 7f68a35161b1e04dcaabdc5a9067b5cd714ca0df | 3 | roles/tower_saml | 7,411 | [
"no_license"
] | [
{
"path": "roles/tower_saml/handlers/main.yml",
"content": "---\n# handlers file for tower_saml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "roles/tower_saml/tasks/main.yml",
"content": "---\n# tasks file for tower_saml\n\n- name: outer bloc... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 4911,
"all_permissive": false
} |
ansible_role | w3c/prbuildbot | de776267b92b3a40e05c9ef5d9a9c9054e7bf035 | 1 | ansible/roles/flask | 7,411 | [
"no_license"
] | [
{
"path": "ansible/roles/flask/tasks/main.yml",
"content": "---\n- name: Install PIP\n easy_install:\n name: pip\n state: present\n\n- name: Install Flask\n pip:\n name: Flask\n state: present\n\n- name: Install requests module\n pip:\n name: requests\n state: present\n\n- name: Install... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 636,
"all_permissive": false
} |
ansible_role | w3c/prbuildbot | de776267b92b3a40e05c9ef5d9a9c9054e7bf035 | 1 | ansible/roles/uwsgi | 7,411 | [
"no_license"
] | [
{
"path": "ansible/roles/uwsgi/tasks/main.yml",
"content": "- name: Install UWSGI\n pip:\n name: uWSGI\n state: present\n\n- name: Remove existing uwsgi socket\n file:\n path: /tmp/prbuildbot.sock\n state: absent\n\n- name: Create /etc/uwsgi\n file:\n path: /etc/uwsgi/vassals\n state: d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 937,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/alacritty | 7,411 | [
"no_license"
] | [
{
"path": "roles/alacritty/molecule/default/molecule.yml",
"content": "# roles/alacritty/molecule/default/molecule.yml\n---\ndependency:\n name: galaxy\n options:\n requirements-file: ../../../../requirements.yml\ndriver:\n name: docker\nplatforms:\n - name: instance\n image: geerlingguy/docker-ub... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1733,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/bash | 7,411 | [
"no_license"
] | [
{
"path": "roles/bash/tasks/main.yml",
"content": "---\n- name: Ensure .config directory exists\n ansible.builtin.file:\n path: \"{{ ansible_user_dir }}/.config\"\n state: directory\n mode: \"0755\"\n\n- name: Ensure .bashrc file exists\n ansible.builtin.file:\n path: \"{{ ansible_user_dir }}/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4022,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/common_tasks | 7,411 | [
"no_license"
] | [
{
"path": "roles/common_tasks/tasks/copy_configs.yml",
"content": "---\n# - name: Debug found configuration files\n# debug:\n# var: config_path\n\n- name: Include all variables from YAML files in the 'vars' directory\n include_vars:\n dir: \"{{ role_path }}/vars\"\n extensions:\n - \"yml\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2229,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/docker | 7,411 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/Ubuntu.yml",
"content": "---\n- name: Install dependencies\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n become: true\n when:\n - ansible_distribution == ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3209,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/fcitx | 7,411 | [
"no_license"
] | [
{
"path": "roles/fcitx/readme.md",
"content": "https://www.fcitx-im.org/wiki/Setup_Fcitx_5\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 44
},
{
"path": "roles/fcitx/tasks/main.yml",
"content": "---\n- name: Install FCITX 5\n apt:\n name: fcitx5\n st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 472,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/foot | 7,411 | [
"no_license"
] | [
{
"path": "roles/foot/tasks/Archlinux.yml",
"content": "---\n- name: Delete a directory\n file:\n path: \"{{ ansible_user_dir }}/.config/foot\"\n state: absent\n\n- name: Create a symlink to a file\n file:\n src: \"{{ role_path }}/files/\"\n dest: \"{{ ansible_user_dir }}/.config/foot\"\n s... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 615,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/fuzzel | 7,411 | [
"no_license"
] | [
{
"path": "roles/fuzzel/tasks/main.yml",
"content": "---\n- name: Delete a directory\n file:\n path: \"{{ ansible_user_dir }}/.config/fuzzel\"\n state: absent\n\n- name: Create a symlink to a file\n file:\n src: \"{{ role_path }}/endeavour_fuzzel\"\n dest: \"{{ ansible_user_dir }}/.config/fuzz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 744,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/git | 7,411 | [
"no_license"
] | [
{
"path": "roles/git/tasks/Windows.yml",
"content": "---\n- name: Install Git using Scoop\n community.windows.win_scoop:\n name: git\n state: present\n when: ansible_os_family == 'Windows'\n\n- name: Set OS-specific config paths for Windows\n ansible.builtin.set_fact:\n config_path: \"{{ ansible... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3072,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/glazewm | 7,411 | [
"no_license"
] | [
{
"path": "roles/glazewm/tasks/main.yml",
"content": "---\n- name: Set OS-specific config paths\n ansible.builtin.set_fact:\n config_path: \"{{ ansible_user_dir }}/.glaze-wm\"\n when: ansible_os_family == 'Windows'\n\n- name: Install GlazeWM using Scoop\n community.windows.win_scoop:\n name: glazew... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 9221,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/gtk3 | 7,411 | [
"no_license"
] | [
{
"path": "roles/gtk3/tasks/Archlinux.yml",
"content": "---\n# - name: Install packages from pacman\n# pacman:\n# name: \"{{ pacman_item }}\"\n# state: present\n# loop:\n# - arc-gtk-theme\n# become: true\n# loop_control:\n# loop_var: pacman_item\n# when: ansible_distribution == \"A... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 587,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/hiddify | 7,411 | [
"no_license"
] | [
{
"path": "roles/hiddify/tasks/Fedora.yml",
"content": "---\n\n- name: Download hiddify archive\n ansible.builtin.get_url:\n url: https://github.com/hiddify/hiddify-app/releases/latest/download/Hiddify-rpm-x64.rpm\n dest: /tmp/hiddify.rpm\n\n- name: Install RPM package\n dnf:\n name: /tmp/hiddify... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 441,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/i3 | 7,411 | [
"no_license"
] | [
{
"path": "roles/i3/files/executable_screen-lock",
"content": "#!/bin/bash\n\nicon=\"$HOME/.local/bin/icon.png\"\ntmpbg='/tmp/screen.png'\n\n(($#)) && { icon=$1; }\n\nscrot \"$tmpbg\"\nconvert \"$tmpbg\" -scale 10% -scale 1000% \"$tmpbg\"\nconvert \"$tmpbg\" \"$icon\" -gravity center -composite -matte \"$tm... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1135,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/i3status | 7,411 | [
"no_license"
] | [
{
"path": "roles/i3status/tasks/main.yml",
"content": "---\n- name: Set OS-specific config paths\n ansible.builtin.set_fact:\n config_path: \"{{ ansible_user_dir }}/.config/i3status\"\n when: ansible_distribution == 'Ubuntu'\n become: false\n\n- name: Include common copy tasks\n ansible.builtin.inclu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 295,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/ideavim | 7,411 | [
"no_license"
] | [
{
"path": "roles/ideavim/tasks/main.yml",
"content": "---\n- name: Create a symlink to a file\n file:\n src: \"{{ role_path }}/files/.ideavimrc\"\n dest: \"{{ ansible_user_dir }}/.ideavimrc\"\n state: link\n force: true\n",
"license_type": "no_license",
"detected_licenses": [],
"siz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 169,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/latex | 7,411 | [
"no_license"
] | [
{
"path": "roles/latex/tasks/Archlinux.yml",
"content": "---\n- name: Install packages from pacman\n pacman:\n name: \"{{ pacman_item }}\"\n state: present\n loop:\n - texlive-binextra # for latexmk\n - texlive-luatex # for lualatex\n - texlive-latex # some tools and format files\n become:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 523,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/lazy_neovim | 7,411 | [
"no_license",
"permissive"
] | [
{
"path": "roles/lazy_neovim/files/lua/plugins/readme.md",
"content": "# Wakatime\nSometimes it's required to re-enter API key manually through `:WakatimeApiKey`, because for some reason changes in `.wakatime.cfg` is not being used\n",
"license_type": "permissive",
"detected_licenses": [
"Apac... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 19,
"total_bytes": 12991,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/lazygit | 7,411 | [
"no_license"
] | [
{
"path": "roles/lazygit/tasks/linux.yml",
"content": "---\n- name: Set OS-specific config paths\n ansible.builtin.set_fact:\n config_path: \"{{ ansible_user_dir }}/.config/lazygit\"\n\n- name: Get latest Lazygit version\n ansible.builtin.uri:\n url: https://api.github.com/repos/jesseduffield/lazygi... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2225,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/lf | 7,411 | [
"no_license"
] | [
{
"path": "roles/lf/tasks/Fedora.yml",
"content": "---\n- name: Enable project Test of the user schlupov\n community.general.copr:\n state: enabled\n name: pennbauman/ports\n become: true\n\n- name: Ensure lf is installed\n dnf:\n name: lf\n state: present\n become: true\n\n- name: Set OS-sp... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1936,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/linux_setup | 7,411 | [
"no_license"
] | [
{
"path": "roles/linux_setup/files/popos_wm_setup.sh",
"content": "#!/bin/bash\n# thaks to https://medium.com/@roshan.mehta.jignesh/guide-to-auto-tiling-in-pop-os-d4f187137040\n\n# TODO and the rest of stuff\ngsettings set org.gnome.shell.keybindings switch-to-application-1 []\ngsettings set org.gnome.shell... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3988,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/mako | 7,411 | [
"no_license"
] | [
{
"path": "roles/mako/tasks/Archlinux.yml",
"content": "---\n- name: Delete a directory\n file:\n path: \"{{ ansible_user_dir }}/.config/mako\"\n state: absent\n\n- name: \"Create symlink to role files directory\"\n ansible.builtin.file:\n src: \"{{ role_path }}/files\"\n dest: \"{{ ansible_us... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 335,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/mise | 7,411 | [
"no_license"
] | [
{
"path": "roles/mise/tasks/Archlinux.yml",
"content": "---\n- name: Delete a directory\n file:\n path: \"{{ ansible_user_dir }}/.config/mise\"\n state: absent\n when: ansible_distribution == 'Archlinux'\n\n- name: \"Create symlink to role files directory\"\n ansible.builtin.file:\n src: \"{{ ro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 380,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/oh-my-posh | 7,411 | [
"no_license"
] | [
{
"path": "roles/oh-my-posh/tasks/Windows.yml",
"content": "---\n- name: Create local bin directory\n ansible.builtin.file:\n path: \"{{ ansible_user_dir }}/.local/bin\"\n state: directory\n mode: \"0755\"\n when: ansible_os_family == 'Windows'\n\n\n- name: Install oh-my-posh on Windows\n commun... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1384,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/polybar | 7,411 | [
"no_license"
] | [
{
"path": "roles/polybar/files/modules/ethernet.ini",
"content": "[module/eth]\r\ninherit = network-base\r\ninterface-type = wired\r\n\r\n; Available tags:\r\n; <label-connected> (default)\r\n; <ramp-signal>\r\nformat-connected = <ramp-signal> <label-connected>\r\n\r\n; Available tags:\r\n; <label-dis... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 12184,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/powershell | 7,411 | [
"no_license"
] | [
{
"path": "roles/powershell/files/profile.ps1",
"content": "# $env:userprofile/.config/powershell\r\nImport-Module Terminal-Icons;\r\n\r\n\r\n# PSReadLine\r\nSet-PSReadLineOption -PredictionSource History\r\nSet-PSReadLineOption -PredictionViewStyle ListView\r\nSet-PSReadLineOption -EditMode Windows\r\n# Ov... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4278,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/programs | 7,411 | [
"no_license"
] | [
{
"path": "roles/programs/tasks/Archlinux.yml",
"content": "---\n- name: Install packages from pacman\n pacman:\n name: \"{{ pacman_item }}\"\n state: present\n loop:\n - neovim\n - zathura # pdf viewer\n - zip\n - unzip\n - eza # better ls\n - wget\n - tldr # better man pages\n... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 11036,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/rofi | 7,411 | [
"no_license"
] | [
{
"path": "roles/rofi/tasks/Fedora.yml",
"content": "---\n- name: Install packages\n dnf:\n name: rofimoji\n state: present\n become: true\n when: ansible_distribution == 'Fedora'\n\n- name: \"Create symlink to role files directory\"\n ansible.builtin.file:\n src: \"{{ role_path }}/files\"\n ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 890,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/ssh | 7,411 | [
"no_license"
] | [
{
"path": "roles/ssh/tasks/linux.yml",
"content": "---\n- name: Set OS-specific config paths\n ansible.builtin.set_fact:\n config_path: \"{{ ansible_user_dir }}/.ssh\"\n\n- name: Include common copy tasks\n ansible.builtin.include_tasks: roles/common_tasks/tasks/copy_configs.yml\n\n- name: Ensure .ssh ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1957,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/sway | 7,411 | [
"no_license"
] | [
{
"path": "roles/sway/readme.md",
"content": "- files/ - old sway I was trying to setup by myself\n- endeavour_sway/ - modified config from sway edition of endeavour os (goated imo)\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
},
{
"path": "roles/sway/task... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3746,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/swaylock | 7,411 | [
"no_license"
] | [
{
"path": "roles/swaylock/tasks/linux.yml",
"content": "---\n- name: Copy swayidle config\n ansible.builtin.copy:\n content: \"{{ role_path }}/files/config\"\n dest: \"{{ ansible_user_dir }}/.config/swaylock/config\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 268,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/tmux | 7,411 | [
"no_license"
] | [
{
"path": "roles/tmux/tasks/linux.yml",
"content": "---\n- name: Set Bash config path\n ansible.builtin.set_fact:\n config_path: \"{{ ansible_user_dir }}\"\n\n- name: Copy Bash config files\n ansible.builtin.include_tasks: roles/common_tasks/tasks/copy_configs.yml\n\n",
"license_type": "no_license"... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1977,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/vifm | 7,411 | [
"no_license"
] | [
{
"path": "roles/vifm/tasks/main.yml",
"content": "---\n- name: Install vifm on Linux\n ansible.builtin.apt:\n name: vifm\n state: present\n update_cache: true\n become: true\n when: ansible_distribution == 'Ubuntu'\n\n- name: Install vifm on Windows using Scoop\n community.windows.win_scoop:\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 759,
"all_permissive": false
} |
ansible_role | volard/dotfiles | c2b7c47233d3b82551f9375063b2493d162c4c03 | 0 | roles/virtual | 7,411 | [
"no_license"
] | [
{
"path": "roles/virtual/tasks/Archlinux.yml",
"content": "---\n- name: Install packages from pacman\n pacman:\n name: \"{{ pacman_item }}\"\n state: present\n loop:\n - virt-manager\n - qemu\n - libvirt\n - edk2-ovmf\n - dnsmasq\n - bridge-utils\n - openbsd-netcat\n - iptabl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1440,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.