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
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/common
8,086
[ "no_license" ]
[ { "path": "workdir/roles/common/tasks/tools.yml", "content": "---\n- name: Install base system tools\n ansible.builtin.apt:\n name:\n - curl\n - git\n - vim\n - tmux\n - htop\n - net-tools\n - python3-pip\n - gnupg\n - lsb-release\n - apt-transport-https...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 992, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/containerd
8,086
[ "no_license" ]
[ { "path": "workdir/roles/containerd/tasks/main.yml", "content": "- name: Detect target architecture and normalize\n set_fact:\n arch: >-\n {{ 'arm64' if ansible_architecture in ['aarch64', 'armv8l'] else\n 'amd64' if ansible_architecture in ['x86_64'] else\n ansible_architecture }}\...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3828, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/grafana
8,086
[ "no_license" ]
[ { "path": "workdir/roles/grafana/templates/grafana-datasource-configmap.yml.j2", "content": "apiVersion: v1\nkind: ConfigMap\nmetadata:\n name: grafana-datasource\n namespace: {{ monitoring_namespace }}\n labels:\n grafana_datasource: \"1\"\ndata:\n prometheus-datasource.yaml: |\n apiVersion: 1\n ...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 8603, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/hostname
8,086
[ "no_license" ]
[ { "path": "workdir/roles/hostname/tasks/main.yml", "content": "---\n- name: Set system hostname\n hostname:\n name: \"{{ inventory_hostname }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 81, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/hostsfile
8,086
[ "no_license" ]
[ { "path": "workdir/roles/hostsfile/tasks/main.yml", "content": "---\n- name: Add cluster IPs to /etc/hosts\n lineinfile:\n path: /etc/hosts\n line: \"{{ hostvars[item].ansible_host }} {{ item }}\"\n state: present\n with_items: \"{{ groups['cluster'] }}\"\n when: hostvars[item].ansible_host is d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 240, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/k8s-init
8,086
[ "no_license" ]
[ { "path": "workdir/roles/k8s-init/tasks/cni.yml", "content": "- name: Download Tigera operator manifest\n get_url:\n url: \"{{ calico_tigera_url }}\"\n dest: /tmp/tigera-operator.yaml\n mode: '0644'\n\n- name: Apply Tigera operator manifest (server-side apply with conflict resolution)\n command: ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3825, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/k8s-install
8,086
[ "no_license" ]
[ { "path": "workdir/roles/k8s-install/tasks/main.yml", "content": "- name: Ensure /etc/apt/keyrings exists\n file:\n path: /etc/apt/keyrings\n state: directory\n mode: '0755'\n become: true\n\n- name: Remove existing (potentially broken) Kubernetes GPG key\n file:\n path: /etc/apt/keyrings/kub...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1968, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/k8s-join
8,086
[ "no_license" ]
[ { "path": "workdir/roles/k8s-join/defaults/main.yml", "content": "kubernetes_outputs: \"/home/ansible/.kube/outputs/\"\njoin_command_src: \"{{ kubernetes_outputs }}/kubeadm_join_cmd.sh\"\njoin_command_tmp: \"/tmp/kubeadm_join_cmd.sh\"\n", "license_type": "no_license", "detected_licenses": [], "s...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1375, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/k8s-prereq
8,086
[ "no_license" ]
[ { "path": "workdir/roles/k8s-prereq/tasks/check.yml", "content": "- name: Check if iptables is installed\n command: which iptables\n register: iptables_check\n changed_when: false\n failed_when: false\n\n- name: Set fact for iptables availability\n set_fact:\n iptables_installed: \"{{ iptables_check...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 6327, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/k8s-verify
8,086
[ "no_license" ]
[ { "path": "workdir/roles/k8s-verify/tasks/network-check.yml", "content": "- name: Deploy DaemonSet for inter-node connectivity test\n kubernetes.core.k8s:\n state: present\n definition:\n apiVersion: apps/v1\n kind: DaemonSet\n metadata:\n name: connectivity-test\n namesp...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 8822, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/kube-state-metrics
8,086
[ "no_license" ]
[ { "path": "workdir/roles/kube-state-metrics/templates/ksm-service.yml.j2", "content": "apiVersion: v1\nkind: Service\nmetadata:\n name: kube-state-metrics\n namespace: {{ monitoring_namespace }}\n labels:\n app: kube-state-metrics\nspec:\n selector:\n app: kube-state-metrics\n ports:\n - name:...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 4893, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/metallb
8,086
[ "no_license" ]
[ { "path": "workdir/roles/metallb/defaults/main.yml", "content": "kubeconfig_local_path: /home/ansible/.kube/config\nmetallb_namespace: metallb-system\nmetallb_version: \"v0.14.9\"\nmetallb_manifest_url: \"https://raw.githubusercontent.com/metallb/metallb/{{ metallb_version }}/config/manifests/metallb-native...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4860, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/nfs-provisioner
8,086
[ "no_license" ]
[ { "path": "workdir/roles/nfs-provisioner/tasks/main.yml", "content": "---\n- name: Deploy NFS provisioner components\n import_tasks: create.yml\n\n- name: Verify dynamic PVC provisioning\n import_tasks: verify.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 141 }...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5977, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/nfs-server
8,086
[ "no_license" ]
[ { "path": "workdir/roles/nfs-server/tasks/main.yml", "content": "- name: Optional format of NFS volume\n import_tasks: format.yml\n\n- name: Mount NFS volume\n import_tasks: mount.yml\n\n- name: Install and configure NFS\n import_tasks: nfs.yml\n\n- name: Optionally verify NFS accessibility from node\n ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 3221, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/node-exporter
8,086
[ "no_license" ]
[ { "path": "workdir/roles/node-exporter/templates/node-exporter-service.yml.j2", "content": "apiVersion: v1\nkind: Service\nmetadata:\n name: node-exporter\n namespace: {{ monitoring_namespace }}\n labels:\n app: node-exporter\nspec:\n selector:\n app: node-exporter\n ports:\n - name: metrics\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3383, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/prometheus
8,086
[ "no_license" ]
[ { "path": "workdir/roles/prometheus/templates/prometheus-clusterrolebinding.yml.j2", "content": "apiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: prometheus\nsubjects:\n - kind: ServiceAccount\n name: prometheus\n namespace: {{ monitoring_namespace }}\nroleRef:\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 5764, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/registry
8,086
[ "no_license" ]
[ { "path": "workdir/roles/registry/tasks/verify.yml", "content": "- name: Wait for registry pod to be Running\n kubernetes.core.k8s_info:\n kind: Pod\n namespace: \"{{ registry_namespace }}\"\n label_selectors:\n - \"app={{ registry_name }}\"\n kubeconfig: \"{{ kubeconfig_local_path }}\"\n ...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5416, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/ssh-setup
8,086
[ "no_license" ]
[ { "path": "workdir/roles/ssh-setup/tasks/generate.yml", "content": "- name: Check if SSH key already exists\n stat:\n path: \"/home/{{ ansible_user }}/.ssh/id_ed25519\"\n register: ssh_key\n become: true\n\n- name: Remove existing SSH keypair if not owned by {{ ansible_user }}\n file:\n path: \"{{...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2155, "all_permissive": false }
ansible_role
AdriRRP/k8s-on-raspi-with-ansible
25e637158993331dd28815144c3b06aa6720ab01
2
workdir/roles/user-management
8,086
[ "no_license" ]
[ { "path": "workdir/roles/user-management/tasks/remove.yml", "content": "---\n- name: Remove ubuntu user if not in use\n user:\n name: ubuntu\n state: absent\n remove: yes\n when: ansible_user != \"ubuntu\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 137 ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 746, "all_permissive": false }
ansible_role
jsem/ansible-iac
7ab20df6beb2dcc04b36d45b58fc42aa16b88c0e
0
roles/appserver
8,086
[ "no_license" ]
[ { "path": "roles/appserver/tasks/main.yml", "content": "---\n- name: install extra packages\n package:\n name:\n - java-11-openjdk-devel\n - maven\n state: present\n\n- name: create backend log directory\n file:\n path: /var/log/backend\n state: directory\n mode: 0755\n owner: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2851, "all_permissive": false }
ansible_role
jsem/ansible-iac
7ab20df6beb2dcc04b36d45b58fc42aa16b88c0e
0
roles/common
8,086
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: setup motd\n template:\n src: ../templates/motd.j2\n dest: /etc/motd\n owner: root\n group: root\n mode: 0644\n\n- name: install packages\n package:\n name:\n - git\n - logrotate\n state: present\n...\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 356, "all_permissive": false }
ansible_role
jsem/ansible-iac
7ab20df6beb2dcc04b36d45b58fc42aa16b88c0e
0
roles/database
8,086
[ "no_license" ]
[ { "path": "roles/database/tasks/main.yml", "content": "---\n- name: install packages\n package:\n name:\n - postgresql-server\n - postgresql-libs\n - libpq-devel\n - gcc\n - platform-python-devel.x86_64\n state: present\n\n- name: install pip packages\n pip:\n name:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 6833, "all_permissive": false }
ansible_role
jsem/ansible-iac
7ab20df6beb2dcc04b36d45b58fc42aa16b88c0e
0
roles/webserver
8,086
[ "no_license" ]
[ { "path": "roles/webserver/tasks/install_service.yml", "content": "---\n- name: install package {{ name }}\n package:\n name: \"{{ package }}\"\n state: present\n\n- name: start service {{ name }}\n service:\n name: \"{{ service }}\"\n state: started\n enabled: true\n...\n", "license_ty...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 4092, "all_permissive": false }
ansible_role
coding-kelps/rapture-minecraft
007b56a764c3bb0621a960ccfed6bbd73aebde85
1
ansible/roles/minecraft_server
8,090
[ "no_license" ]
[ { "path": "ansible/roles/minecraft_server/tasks/teardown.yml", "content": "---\n- name: Remove Minecraft server container\n containers.podman.podman_container:\n name: minecraft-server\n state: absent\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 }, { ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1027, "all_permissive": false }
ansible_role
coding-kelps/rapture-minecraft
007b56a764c3bb0621a960ccfed6bbd73aebde85
1
ansible/roles/podman
8,090
[ "no_license" ]
[ { "path": "ansible/roles/podman/tasks/main.yml", "content": "---\n- name: Install podman package\n become: true\n ansible.builtin.apt:\n name: podman\n state: present\n update_cache: true\n\n- name: Configure Podman service\n become: true\n ansible.builtin.systemd_service:\n name: podman\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 520, "all_permissive": false }
ansible_role
SofiaDemyanovska/ansible_install_jenkins
5d29b00479dd26b37d659c1e7e6888da76ad2be2
0
roles/git
8,090
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": " - name:\n shell: sudo rm -r /var/lib/jenkins\n\n - git:\n repo: <EMAIL>:SofiaDemyanovska/jenkins.git\n dest: /var/lib/jenkins\n\n - name: Recursively change ownership of a directory\n file:\n path: /var/lib/jenkins\n state: dire...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 423, "all_permissive": false }
ansible_role
SofiaDemyanovska/ansible_install_jenkins
5d29b00479dd26b37d659c1e7e6888da76ad2be2
0
roles/jenkins
8,090
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": " - name: Install yum\n yum:\n name:\n - wget\n - java-1.8.0-openjdk\n - git\n\n - name: Download jenkins.repo\n get_url:\n url: https://pkg.jenkins.io/redhat/jenkins.repo\n dest: /etc/yum.repos.d/jenkins.repo\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1862, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/deploy_db_master
8,090
[ "no_license" ]
[ { "path": "roles/deploy_db_master/tasks/main.yaml", "content": "---\n\n- name: Create a Instance\n google.cloud.gcp_sql_instance:\n name: \"{{ master_db_name }}\"\n settings:\n ip_configuration:\n authorized_networks:\n - name: google dns server\n value: 8.8.8.8/32\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1459, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/deploy_db_replicas
8,090
[ "no_license" ]
[ { "path": "roles/deploy_db_replicas/vars/main.yaml", "content": "---\nreplicas:\n - '{{ replica_name }}-replica2'\nmachine_tier: db-n1-standard-2\nmax_disk_storage: 5368709120\nreplicas_db_region: \"{{ gcp_region }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 14...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 846, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/destroy_db_master
8,090
[ "no_license" ]
[ { "path": "roles/destroy_db_master/tasks/main.yml", "content": "---\n\n- name: Destroy db_master\n tags: destroy_db\n google.cloud.gcp_sql_database:\n instance: \"{{ master_db_name }}\"\n name: \"ghost_db\"\n project: \"{{ gcp_project }}\"\n auth_kind: \"{{ gcp_auth_kind }}\"\n service_acco...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 543, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/destroy_db_replicas
8,090
[ "no_license" ]
[ { "path": "roles/destroy_db_replicas/tasks/main.yml", "content": "---\n\n- name: Destroy Master Instance\n google.cloud.gcp_sql_instance:\n name: \"{{ item }}\"\n project: \"{{ gcp_project }}\"\n auth_kind: \"{{ gcp_auth_kind }}\"\n service_account_file: \"{{ gcp_cred_file }}\"\n state: abse...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 315, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/gke_app_deploy
8,090
[ "no_license" ]
[ { "path": "roles/gke_app_deploy/vars/main.yml", "content": "---\napp: ghost\nimage: ghost:latest\nnamespace: ghost", "license_type": "no_license", "detected_licenses": [], "size_bytes": 51 }, { "path": "roles/gke_app_deploy/tasks/main.yaml", "content": "- name: Pull Ghost image\n do...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3121, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/gke_cluster_create
8,090
[ "no_license" ]
[ { "path": "roles/gke_cluster_create/tasks/main.yml", "content": "---\n\n# Create Cluster\n\n- name: Create Google Kubernetes Engine Cluster\n google.cloud.gcp_container_cluster:\n name: ascn-cluster\n initial_node_count: \"{{ gcp_initial_node_count }}\"\n node_config:\n machine_type: \"{{ gcp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1638, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/network_create
8,090
[ "no_license" ]
[ { "path": "roles/network_create/tasks/main.yml", "content": "- name: Create GCP network\n google.cloud.gcp_compute_network:\n name: network-{{ gcp_cluster_name }}\n auto_create_subnetworks: 'true'\n project: \"{{ gcp_project }}\"\n auth_kind: \"{{ gcp_auth_kind }}\"\n service_account_file: \...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 296, "all_permissive": false }
ansible_role
PedroFernandesMIEI/ASCN22-23
919ecd94b7b1d48db37a12c7e12e2c7538c23c4f
0
roles/network_destroy
8,090
[ "no_license" ]
[ { "path": "roles/network_destroy/tasks/main.yml", "content": "- name: Destroy GCP network\n google.cloud.gcp_compute_network:\n name: network-{{ gcp_cluster_name }}\n auto_create_subnetworks: 'true'\n project: \"{{ gcp_project }}\"\n auth_kind: \"{{ gcp_auth_kind }}\"\n service_account_file:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 276, "all_permissive": false }
ansible_role
luan-analiseinfo/ansible_development
fa93dfb40d34d0d36fcd11b37d9cb30fcafb2c95
0
roles/common
8,090
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n - name: install default packages\n apt: \"{{ item }}\"\n state: \"installed\"\n with_items:\n - aptitude\n - vim\n - supervisor\n - python-dev\n - htop\n - screen\n ", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 181, "all_permissive": false }
ansible_role
luan-analiseinfo/ansible_development
fa93dfb40d34d0d36fcd11b37d9cb30fcafb2c95
0
roles/eclipse
8,090
[ "no_license" ]
[ { "path": "roles/eclipse/tasks/main.yml", "content": "---\n - name: Verificando se o eclipse já está instalado\n file: \n path: '{{ eclipse_home_parent_directory }}'\n state: directory\n become: yes\n\n - name: Downloading eclipse\n get_url:\n url: '{{ eclipse_download_url }}' \n dest:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 700, "all_permissive": false }
ansible_role
luan-analiseinfo/ansible_development
fa93dfb40d34d0d36fcd11b37d9cb30fcafb2c95
0
roles/jdk8
8,090
[ "no_license" ]
[ { "path": "roles/jdk8/defaults/main.yml", "content": "bin_dir: /usr/bin\ndownload_folder: /opt/oracle\ndownload_url: \"http://download.oracle.com/otn-pub/java/jdk/{{jdk_dir}}/{{jdk_archive}}\"\njava_archive: \"{{ download_folder }}/{{ jdk_archive }}\"\njava_build_custom: 11\njava_name: \"{{ download_folder ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2566, "all_permissive": false }
ansible_role
luan-analiseinfo/ansible_development
fa93dfb40d34d0d36fcd11b37d9cb30fcafb2c95
0
roles/maven
8,090
[ "no_license" ]
[ { "path": "roles/maven/tasks/main.yml", "content": "---\n- name: Verificando se o Maven já está instalado\n stat: \n path: '{{ maven_home_parent_directory }}/apache-maven-{{ maven_version }}'\n register: maven_installed\n\n- name: Downloading Maven\n get_url:\n url: '{{ maven_download_url }}'\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1251, "all_permissive": false }
ansible_role
ryanmoore/nix-config
30fddc71719a42b6c32f09b2bcfae4f0c515b950
0
ansible/roles/common
8,090
[ "no_license" ]
[ { "path": "ansible/roles/common/files/tmux.conf", "content": "set -g default-terminal \"screen-256color\"\n\n# gnuscreen prefix key\n#unbind C-b\n#set -g prefix C-a\n#bind C-a send-prefix\n\n# usually just do this on accident\nunbind C-o\n\n# force reload tmux-conf\nunbind r\nbind r source-file ~/.tmux.conf...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 19247, "all_permissive": false }
ansible_role
dbsrv/ansible-automation-agent
55fa1fd8460c13da9db0dcf41835296cce6b944a
6
roles/install
8,090
[ "no_license" ]
[ { "path": "roles/install/tasks/main.yml", "content": "---\n\n- name: Download Automation Agent\n get_url: url={{automation_agent_pkg}} dest=/tmp/automation-agent.rpm\n\n- name: Check for existing Automation Agent config file\n stat: path=/etc/mongodb-mms/automation-agent.config\n register: config_file\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2070, "all_permissive": false }
ansible_role
dbsrv/ansible-automation-agent
55fa1fd8460c13da9db0dcf41835296cce6b944a
6
roles/preflight
8,090
[ "no_license" ]
[ { "path": "roles/preflight/tasks/main.yml", "content": "---\n\n- name: Collect status on OpenSSL\n command: rpm -q openssl\n register: openssl_status\n failed_when: False\n\n- name: Install Make, dependency required for OpenSSL\n command: yum install -y make\n when: \"'1.0.1e' not in openssl_status.std...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 694, "all_permissive": false }
ansible_role
54Grades/talleragosto2020
eb9e3eed9bbf31df60f5de185dc6411435a07176
0
roles/apache-debian
8,090
[ "no_license" ]
[ { "path": "roles/apache-debian/tasks/main.yml", "content": "---\n - name: Install Obligatorio software\n apt:\n name: apache2\n state: latest\n update_cache: yes\n\n - name: Create virtualhost content directories\n file:\n path: \"{{ item }}\"\n recurse: yes\n state: di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 780, "all_permissive": false }
ansible_role
aspenbr/demo-ansible
305a6da4ebd14dfbd1f32aabfad8cfb794f7fa47
0
demo-ansible/roles/make_user
8,090
[ "no_license" ]
[ { "path": "demo-ansible/roles/make_user/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/make_user", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "demo-ansible/roles/make_user/handlers/main.yml", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1611, "all_permissive": false }
ansible_role
sventurtle/khw-playbook-2025
a447050106f2236fb23f9fd6273b1533e3b40b4e
0
roles/00_configure_system
8,090
[ "no_license" ]
[ { "path": "roles/00_configure_system/tasks/main.yaml", "content": "- name: install packages\n apt:\n name: \"{{ packages }}\"\n state: present\n vars:\n packages:\n - wget\n - curl\n - openssl\n - socat\n - conntrack\n - ipset\n - kmod\n\n- name: disable swap\n shell: swapof...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 296, "all_permissive": false }
ansible_role
sventurtle/khw-playbook-2025
a447050106f2236fb23f9fd6273b1533e3b40b4e
0
roles/01_download_binaries
8,090
[ "no_license" ]
[ { "path": "roles/01_download_binaries/tasks/main.yaml", "content": "- name: Download kubernetes binaries\n include: 01_kube_bins.yaml\n\n- name: Download runtime binaries\n include: 02_runtime_bins.yaml\n\n- name: Download etcd binary\n include: 03_etcd_bin.yaml\n", "license_type": "no_license", ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2269, "all_permissive": false }
ansible_role
sventurtle/khw-playbook-2025
a447050106f2236fb23f9fd6273b1533e3b40b4e
0
roles/02_certificates
8,090
[ "no_license" ]
[ { "path": "roles/02_certificates/tasks/main.yaml", "content": "- name: create kubernets pki directory\n file:\n path: /etc/kubernetes/pki\n state: directory\n mode: 0755\n\n- name: generate a private key\n openssl_privatekey:\n path: \"{{ PKI_DIR }}/ca-key.pem\"\n size: 4096\n type: \"RS...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2463, "all_permissive": false }
ansible_role
sventurtle/khw-playbook-2025
a447050106f2236fb23f9fd6273b1533e3b40b4e
0
roles/03_bootstrapping
8,090
[ "no_license" ]
[ { "path": "roles/03_bootstrapping/templates/kubelet.service.j2", "content": "[Unit]\nDescription=Kubernetes Kubelet\nDocumentation=https://github.com/kubernetes/kubernetes\nAfter=containerd.service\nRequires=containerd.service\n\n[Service]\nExecStart=/usr/local/bin/kubelet \\\n --config={{ KUBE_CONFIG_DIR ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 17124, "all_permissive": false }
ansible_role
MingleChou/AnsibleTest
23218233998871ad6538e883d5074586b8c09164
0
roles/jdk
8,090
[ "no_license" ]
[ { "path": "roles/jdk/templates/java.sh.j2", "content": "#!/bin/sh\n\necho \"\nexport JAVA_HOME=/home/jdk\nexport PATH=\\$JAVA_HOME/bin:$PATH \nexport CLASSPATH=.:\\$JAVA_HOME/lib/dt.jar:\\$JAVA_HOME/lib/tools.jar\n\">>/root/.bashrc\n\nrm -rf /home/jdk.tar\n\nsource /root/.bash_profile\nsource /root/.bashrc\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 768, "all_permissive": false }
ansible_role
MingleChou/AnsibleTest
23218233998871ad6538e883d5074586b8c09164
0
roles/passwd
8,090
[ "no_license" ]
[ { "path": "roles/passwd/tasks/main.yml", "content": "#- name: unlock shadow file\n# shell: chattr -i /etc/shadow\n\n- name: change passwords\n shell: echo '<PASSWORD>' | passwd --stdin root\n \n#- name: lock shadow file\n# shell: chattr +i /etc/shadow\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 197, "all_permissive": false }
ansible_role
jabawack81/ansible-dotfiles
b4e4d8150da31b3721ab32daaea8a4d8a8e7ef9f
0
roles/clonerepo
8,091
[ "no_license" ]
[ { "path": "roles/clonerepo/tasks/main.yml", "content": "---\n- name: clone {{ repo_name }}\n git:\n repo: \"https://github.com/{{ repo_name }}.git\"\n dest: \"{{ destination }}\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 121, "all_permissive": false }
ansible_role
jabawack81/ansible-dotfiles
b4e4d8150da31b3721ab32daaea8a4d8a8e7ef9f
0
roles/symlink
8,091
[ "no_license" ]
[ { "path": "roles/symlink/tasks/main.yml", "content": "---\n- name: Create symbolic link for {{ filename }}\n file:\n src: \"~/.dotfiles/{{ filename }}\"\n dest: \"~/.{{ filename }}\"\n state: link", "license_type": "no_license", "detected_licenses": [], "size_bytes": 143 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 143, "all_permissive": false }
ansible_role
stevenjsmin/kda
bb6dd526c09350b39b792b45626251e83028eb49
0
devops_playbooks/playbook-install/roles/apache-tomcat
8,091
[ "no_license" ]
[ { "path": "devops_playbooks/playbook-install/roles/apache-tomcat/vars/main.yml", "content": "---\n# vars file for apatch-tomcat\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "devops_playbooks/playbook-install/roles/apache-tomcat/handlers/main.ym...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3840, "all_permissive": false }
ansible_role
stevenjsmin/kda
bb6dd526c09350b39b792b45626251e83028eb49
0
devops_playbooks/playbook-install/roles/checkout
8,091
[ "no_license" ]
[ { "path": "devops_playbooks/playbook-install/roles/checkout/handlers/main.yml", "content": "---\n# handlers file for checkout\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "devops_playbooks/playbook-install/roles/checkout/vars/main.yml", "co...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 292, "all_permissive": false }
ansible_role
stevenjsmin/kda
bb6dd526c09350b39b792b45626251e83028eb49
0
devops_playbooks/playbook-install/roles/java
8,091
[ "no_license" ]
[ { "path": "devops_playbooks/playbook-install/roles/java/tasks/main.yml", "content": "---\n# tasks file for java\n\n- name: \"Prepare installed dirs\"\n file:\n path: \"{{ item }}\"\n state: directory\n mode: '0755'\n loop:\n - \"{{ tmp_dir }}\"\n - \"{{ application_install_dir }}\"\n t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1587, "all_permissive": false }
ansible_role
stevenjsmin/kda
bb6dd526c09350b39b792b45626251e83028eb49
0
devops_playbooks/playbook-install/roles/yum_package
8,091
[ "no_license" ]
[ { "path": "devops_playbooks/playbook-install/roles/yum_package/templates/install.sh.j2", "content": "#!/bin/bash\n\nexport ACCEPT_EULA=Y\n\n## Install yum packages\n{% for pkg in yum_packages %}\nyum install {{ pkg }} -y\n{% endfor %}\n\n### Run Shell commands\n{% for cmd in shell_commands %}\n{{ cmd.comm...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1578, "all_permissive": false }
ansible_role
fabianlee/ubuntu-local-ansible-ppa
dd2fc3ead51296440d02f4c099a82ddb98e7cedc
0
roles/ubuntu-ansible-ppa
8,091
[ "no_license" ]
[ { "path": "roles/ubuntu-ansible-ppa/tasks/main.yml", "content": "# https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#installing-ansible-on-ubuntu\n---\n- name: Install add-apt-repostory\n become: yes\n apt: name=software-properties-common state=latest\n\n- name: Add Ansibl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1172, "all_permissive": false }
ansible_role
Papalam/copy_db_postgres
a17d3c6c04ef653cf1ab78df4a70ad43b10a2816
0
roles/preconfig
8,091
[ "no_license" ]
[ { "path": "roles/preconfig/defaults/main.yml", "content": "---\nimages:\n - name: dump\n command: pg_dump\n image_name: \"{{ docker_image_postgres_dump }}\"\n - name: restore\n command: pg_restore\n image_name: \"{{ docker_image_postgres_restore }}\"\n", "license_type": "no_license", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2656, "all_permissive": false }
ansible_role
Papalam/copy_db_postgres
a17d3c6c04ef653cf1ab78df4a70ad43b10a2816
0
roles/transfer
8,091
[ "no_license" ]
[ { "path": "roles/transfer/tasks/main.yml", "content": "---\n- name: Формирование имени файла\n ansible.builtin.set_fact:\n file_name: \"{{ source }}.{{ lookup('password', '/dev/null chars=ascii_lowercase,digits length=8') }}.backup\"\n cacheable: false\n\n- name: выгрузка данных\n community.docker.d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1701, "all_permissive": false }
ansible_role
aurelienlegrand/bitwarden
dddfc9a4938ebf13f59879f5c3d0956bba069102
0
roles/docker
8,091
[ "no_license" ]
[ { "path": "roles/docker/vars/main.yml", "content": "---\n\ndocker_repo_distribution: \"{{ ansible_distribution | lower }}\"\ndocker_version: \"latest\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 }, { "path": "roles/docker/tasks/main.yml", "content": "--...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1259, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/common
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/common/tasks/qemu-guest-agent.yml", "content": "---\n- name: Start qemu-guest-agents\n ansible.builtin.service:\n name: qemu-guest-agent\n state: started\n when: setup_qemu\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 }, { ...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1375, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/confluence
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/confluence/tasks/confluence.yml", "content": "---\n- name: Download Confluence installer\n get_url:\n url: \"{{ confluence_installer_url }}\"\n dest: \"{{ confluence_installer_file }}\"\n mode: 0755\n checksum: \"md5:{{ confluence_installer_checksum }}\"\n\n- name: Co...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5399, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/docker
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/docker/files/taiga.config.json.j2", "content": "{\n \"api\": \"http://192.168.10.130:9000/api/v1/\",\n \"eventsUrl\": \"ws://192.168.10.130:9000/events\",\n \"baseHref\": \"/\",\n \"loginFormType\": \"ldap\",\n \"eventsMaxMissedHeartbeats\": 5,\n \"eventsHeartbea...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 21, "total_bytes": 19366, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/firebird
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/firebird/tasks/main.yml", "content": "---\n# This will install Firebird\n#\n\n- name: Install Tasks\n ansible.builtin.import_tasks: install-firebird.yml\n\n- name: DB Restore Tasks\n ansible.builtin.import_tasks: restore-db.yml\n when: restore_db\n\n# TODO: Sanitize ownerrights...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 40373, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/jump
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/jump/tasks/main.yml", "content": "---\n# This will setup SSH\n#\n\n- name: Install SSH public Key\n ansible.posix.authorized_key:\n user: ffweingarten\n state: present\n key: '{{ item }}'\n with_file:\n - 'files/id_rsa_1.pub'\n\n- name: Install SSH private Key\n ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 956, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/mariadb_backup
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/mariadb_backup/tasks/main.yml", "content": "---\n- name: \"Set timestamp for the backups\"\n ansible.builtin.set_fact:\n now: '{{ lookup(\"pipe\", \"date +%F-%T\") }}'\n\n- name: Create ad-hoc directory\n ansible.builtin.file:\n path: \"{{ nfs_mountpoint }}/ad-hoc\"\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 957, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/mariadb_restore
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/mariadb_restore/tasks/main.yml", "content": "---\n- name: \"Copy Backup file\"\n ansible.builtin.copy:\n src: \"{{ nfs_mountpoint }}/ad-hoc/{{ backup_file }}\"\n dest: \"/tmp/\"\n remote_src: true\n mode: '0644'\n\n- name: Restore database\n community.mysql.mysql_db:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 466, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/nfs
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/nfs/tasks/main.yml", "content": "---\n- name: Install nfs debian package\n ansible.builtin.apt:\n pkg: nfs-common\n state: present\n when: ansible_os_family == 'Debian'\n\n- name: Check if the mountpoint exists\n ansible.builtin.file:\n path: \"{{ nfs_mountpoint }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 494, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/nginx-proxy-manager
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/nginx-proxy-manager/files/nginx_proxy_backup.j2", "content": "#!/bin/bash\n \nCP=$(command -v cp)\nMKDIR=$(command -v mkdir)\nDOCKER=$(command -v docker)\n\nBASEDIR=\"{{ mountpoint }}\"\nBACKUPDIR=\"${BASEDIR}/$(date +%F)\"\nNPM_HOME=\"{{ npm_home }}\"\nCONTAINER_NAME=\"{{ db_con...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4636, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/portainer
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/portainer/tasks/main.yml", "content": "---\n- name: Create Portainer Volume\n community.docker.docker_volume:\n name: portainer_data\n\n- name: Start Portainer Container\n community.docker.docker_container:\n name: portainer\n image: portainer/portainer-ce:latest\n r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 406, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/postgres_backup
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/postgres_backup/tasks/main.yml", "content": "---\n- name: \"Set timestamp for the backups\"\n ansible.builtin.set_fact:\n now: '{{ lookup(\"pipe\", \"date +%F-%T\") }}'\n\n- name: Create ad-hoc directory\n ansible.builtin.file:\n path: \"{{ nfs_mountpoint }}/ad-hoc\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1286, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/postgres_restore
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/postgres_restore/tasks/main.yml", "content": "---\n- name: \"Copy Backup file\"\n ansible.builtin.copy:\n src: \"{{ nfs_mountpoint }}/ad-hoc/{{ backup_file }}\"\n dest: \"/tmp/\"\n remote_src: true\n owner: postgres\n group: postgres\n mode: '0644'\n\n- name: \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 504, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/postgres_setup
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/postgres_setup/tasks/main.yml", "content": "---\n- name: Install postgres debian packages\n ansible.builtin.apt:\n pkg:\n - postgresql\n - postgresql-contrib\n - postgresql-client\n - python3\n - python3-pip\n - python3-psycopg2\n - acl\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4647, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/webserver
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/webserver/tasks/rainloop.yml", "content": "---\n- name: Check if rainloop is installed\n ansible.builtin.stat:\n path: \"{{ rainloop_install_path + 'index.php' }}\"\n register: rainloop_installed\n\n- name: Create web folder for rainloop\n ansible.builtin.file:\n path: \"...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 4844, "all_permissive": false }
ansible_role
Freiwillige-Feuerwehr-Weingarten/landscape-ffweingarten
a4e2521336ad8cf0a9a65bd0e74e78e53fb72615
0
playbooks/roles/wireguard
8,091
[ "no_license" ]
[ { "path": "playbooks/roles/wireguard/templates/server_wg0.conf.j2", "content": "# {{ ansible_managed }}\n\n[Interface]\nAddress = 192.168.69.1/24\nListenPort = 51820\nPrivateKey = {{ server_privkey }}\nPostUp = iptables -A FORWARD -i wg0 -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE\nPostD...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2082, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/backup
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/backup/tasks/main.yml", "content": "---\n- name: Backup a virtual domain.\n fortios_monitor_fact:\n selector: 'system_config_backup'\n vdom: 'root'\n params:\n scope: 'global'\n register: backupinfo\n\n- name: Save the backup information.\n copy:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 293, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/clientvpn
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/clientvpn/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ipsec\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "fortinet_with_roles/roles/clientvpn/defaults/main.yml"...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 5219, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/common
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/common/tasks/ips_profile.yml", "content": "- name: Create the Security Profiles > Intrusion Protection > HTMS Protect Client \n fortios_ips_sensor:\n vdom: \"{{ vdom }}\"\n state: present\n ips_sensor:\n name: \"HTMS Protect Client\"\n comment: \"High...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 12, "total_bytes": 10347, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/interfaces
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/interfaces/tasks/system_dhcp_server.yml", "content": "---\n- name: Creating DHCP Servers for interfaces\n fortios_system_dhcp_server:\n vdom: \"{{ vdom }}\"\n state: present\n system_dhcp_server:\n id: \"{{ item.vlan_id }}\"\n domain: \"{{ item.domain...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 16810, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/policies
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/policies/tasks/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# tasks file for policies\n- import_tasks: firewall_address.yml", "license_type": "no_license", "detected_licenses": [], "size_bytes": 98 }, { "path": "fortinet_with_roles/rol...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4174, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/saml
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/saml/vars/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# vars file for saml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 57 }, { "path": "fortinet_with_roles/roles/saml/tasks/main.yml", "content": "#SPDX...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1382, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/sslvpn
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/sslvpn/defaults/main.yml", "content": "---\n# defaults file for sslvpn\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "fortinet_with_roles/roles/sslvpn/tests/test.yml", "content": "---\n- hosts: localhost\...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 9155, "all_permissive": false }
ansible_role
dpickard39/ansible-playbooks
a2e53aea6c77132cdb7efc947bcbd86e29cad206
4
fortinet_with_roles/roles/wireless
8,091
[ "no_license" ]
[ { "path": "fortinet_with_roles/roles/wireless/tasks/main.yml", "content": "---\n# tasks file for wireless\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "fortinet_with_roles/roles/wireless/defaults/main.yml", "content": "---\n# defaults file ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 8933, "all_permissive": false }
ansible_role
kk4977/expense-ansible-roles
92dff53b7d2d1a562abe4560f64b6eb6f8371a71
0
roles/backend
8,091
[ "no_license" ]
[ { "path": "roles/backend/vars/main.yaml", "content": "login_host: db.sivakumar.cloud\nlogin_password: <PASSWORD>\nlogin_user: root\nDB_HOST: db.sivakumar.cloud\napp_location: /app\ncomponent: backend", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 }, { "path": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1634, "all_permissive": false }
ansible_role
kk4977/expense-ansible-roles
92dff53b7d2d1a562abe4560f64b6eb6f8371a71
0
roles/frontend
8,091
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yaml", "content": "- name: Installation of nginx\n ansible.builtin.dnf:\n name: nginx\n state: latest\n# - name: Enable the nginx \n# ansible.builtin.service:\n# name: nginx\n# state: started\n# enabled: yes\n- name: delete the default website\n ans...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 767, "all_permissive": false }
ansible_role
andreipak/wordpress-ansible
0a467fc06363496dd78700b1309545c6ab6ea327
11
roles/mysql
8,091
[ "no_license" ]
[ { "path": "roles/mysql/defaults/main.yml", "content": "---\nwp_mysql_db: wordpress\nwp_mysql_user: wordpress\nwp_mysql_password: <PASSWORD>\nlogin_user: \"{{ mysql_admin_user }}\"\nlogin_password: \"{{ mysql_admin_password }}\"\n\n# defaults file for mysql\n", "license_type": "no_license", "detected...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 552, "all_permissive": false }
ansible_role
andreipak/wordpress-ansible
0a467fc06363496dd78700b1309545c6ab6ea327
11
roles/php
8,091
[ "no_license" ]
[ { "path": "roles/php/tasks/main.yml", "content": "---\n- name: Install php extensions\n apt: name={{ item }} state=present\n sudo: yes\n with_items:\n - php-gd \n - php-ssh2\n\n# tasks file for php\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 149 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 149, "all_permissive": false }
ansible_role
andreipak/wordpress-ansible
0a467fc06363496dd78700b1309545c6ab6ea327
11
roles/server
8,091
[ "no_license" ]
[ { "path": "roles/server/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - server", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "roles/server/handlers/main.yml", "content": "---\n# handlers file for serv...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1959, "all_permissive": false }
ansible_role
andreipak/wordpress-ansible
0a467fc06363496dd78700b1309545c6ab6ea327
11
roles/wordpress
8,091
[ "no_license" ]
[ { "path": "roles/wordpress/tasks/main.yml", "content": "---\n- name: Download WordPress \n get_url: \n url=https://wordpress.org/latest.tar.gz \n dest=/tmp/wordpress.tar.gz\n validate_certs=no\n\n- name: Extract WordPress \n unarchive: src=/tmp/wordpress.tar.gz dest=/var/www/ copy=no\n sudo: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1290, "all_permissive": false }
ansible_role
lukasvojtek/ansible_tuke
4569f6d4f4b15e280b228718361742fd0f21c904
0
006_lamp/roles/lamp
8,091
[ "no_license" ]
[ { "path": "006_lamp/roles/lamp/tasks/Debian-family.yml", "content": "- name: Install software-properties-common\n apt:\n name: \n - lsb-release\n - ca-certificates\n - apt-transport-https\n - software-properties-common\n - gnupg2\n state: present\n update_cache: yes\n bec...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1414, "all_permissive": false }
ansible_role
lukasvojtek/ansible_tuke
4569f6d4f4b15e280b228718361742fd0f21c904
0
007_db-config/roles/lamp
8,091
[ "no_license" ]
[ { "path": "007_db-config/roles/lamp/tasks/main.yml", "content": "---\n# tasks file for lamp\n\n- include_tasks: \"{{ ansible_os_family }}-family.yml\"\n when: ansible_os_family == 'Debian'\n\n- include_tasks: \"{{ ansible_os_family }}-family.yml\"\n when: ansible_os_family == 'RedHat'\n\n- name: Deploy in...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1427, "all_permissive": false }
ansible_role
lukasvojtek/ansible_tuke
4569f6d4f4b15e280b228718361742fd0f21c904
0
007_db-config/roles/mariadb-conf
8,091
[ "no_license" ]
[ { "path": "007_db-config/roles/mariadb-conf/handlers/main.yml", "content": "---\n# handlers file for mariadb-conf\n- name: restart apache\n become: yes\n service:\n name: apache2\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2124, "all_permissive": false }
ansible_role
lukasvojtek/ansible_tuke
4569f6d4f4b15e280b228718361742fd0f21c904
0
010_windows/roles/testing
8,091
[ "no_license" ]
[ { "path": "010_windows/roles/testing/tasks/main.yml", "content": "---\n# tasks file for testing\n- name: Install Chocolatey\n ansible.windows.win_powershell:\n script: Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 687, "all_permissive": false }
ansible_role
redhat-developer-demos/cloud-demoshift
7579b46b344046d6f04aa2910e6a85f9e684ec2a
3
roles/openshift
8,091
[ "no_license" ]
[ { "path": "roles/openshift/tasks/main.yaml", "content": "- name: Install essential packages\n yum:\n name: \"{{item}}\"\n state: present\n with_items:\n - docker\n - vim\n - wget \n\n- name: upgrade all packages\n yum:\n name: '*'\n state: latest\n\n- name: Download OpenShift Client ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1992, "all_permissive": false }
ansible_role
jonstjohn/air-canary-web
0c99a005464254dc3803d48de6c8fb73874a1187
1
ansible/roles/dbtier
8,091
[ "no_license" ]
[ { "path": "ansible/roles/dbtier/tasks/main.yml", "content": "- name: Install python-pycurl for adding repository\n apt: pkg=python-pycurl\n\n- name: postgresql - add repository key\n apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc state=present\n\n- name: Add postgres repository\n apt_rep...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1521, "all_permissive": false }
ansible_role
jonstjohn/air-canary-web
0c99a005464254dc3803d48de6c8fb73874a1187
1
ansible/roles/webtier
8,091
[ "no_license" ]
[ { "path": "ansible/roles/webtier/tasks/main.yml", "content": "- name: python - install pip\n apt: pkg=python-pip\n\n- name: python - virtualenv\n apt: pkg=python-virtualenv\n\n- name: python - install dev\n apt: pkg=python-dev\n\n- name: python - pip upgrade\n pip: name=pip extra_args='--upgrade'\n\n- n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 4247, "all_permissive": false }
ansible_role
victorcardonaf/python-flask-mysql-app
2ed2986a09e950eba43085ced9cdc5ab21ac62be
0
roles/docker
8,091
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: update repo\n become: true\n yum: \n name: \"*\"\n state: latest\n\n- name: install git and docker\n become: true\n shell: |\n yum install -y git docker\n\n- name: add users to docker and root groups\n become: true\n shell: |\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1574, "all_permissive": false }
ansible_role
victorcardonaf/python-flask-mysql-app
2ed2986a09e950eba43085ced9cdc5ab21ac62be
0
roles/provision-ec2
8,091
[ "no_license" ]
[ { "path": "roles/provision-ec2/tasks/main.yml", "content": "---\n- name: Create keypair\n ec2_key:\n name: my_keypair\n key_material: '<KEY>'\n register: keypair\n\n- name: set variable\n debug: var=keypair\n\n- name: set keypair\n set_fact: keypair={{ keypair.key.name }}\n\n- name: Launch_instanc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1382, "all_permissive": false }
ansible_role
victorcardonaf/python-flask-mysql-app
2ed2986a09e950eba43085ced9cdc5ab21ac62be
0
roles/provision-vpc
8,091
[ "no_license" ]
[ { "path": "roles/provision-vpc/tasks/main.yml", "content": "---\n- name: Create VPC\n ec2_vpc_net:\n name: vpc_instances\n cidr_block: \"{{ cidr_block }}\"\n resource_tags: { \"Environment\":\"Development\" }\n register: vpc\n\n- name: set variable\n debug: var=vpc.vpc.id\n\n- name: set vpc\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2654, "all_permissive": false }
ansible_role
Tokugero/thmrooms
6723e915f9be22cf58ade9c6d7b36d43550dba13
0
base/ansible/roles/common
8,093
[ "no_license" ]
[ { "path": "base/ansible/roles/common/tasks/install_docker.yml", "content": "- name: Update apt\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Install packages\n apt:\n pkg:\n - ca-certificates\n - curl\n - gnupg\n - python3-pip\n\n- name: Install pip packages\n...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 7357, "all_permissive": false }