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 | SujathaGangireddy/hackathon | 41a096491b20d9d4c0ac9e19db5d3b83a37eacd1 | 0 | Hackathon_codes/roles/launch_ec2 | 8,178 | [
"no_license"
] | [
{
"path": "Hackathon_codes/roles/launch_ec2/tasks/main.yml",
"content": "---\n- name: launce ec2 instance in VPC1\n ec2:\n instance_type: t2.micro\n image: \"{{ ubuntu_machine_image }}\" \n count: 1\n region: \"{{ region }}\"\n key_name: \"{{ key_name }}\"\n vpc_subnet_id: \"{{ subnet_pub... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1202,
"all_permissive": false
} |
ansible_role | SujathaGangireddy/hackathon | 41a096491b20d9d4c0ac9e19db5d3b83a37eacd1 | 0 | Hackathon_codes/roles/nat-gateway | 8,178 | [
"no_license"
] | [
{
"path": "Hackathon_codes/roles/nat-gateway/tasks/main.yml",
"content": "---\n- name: create the NAT gateway\n ec2_vpc_nat_gateway:\n subnet_id: \"{{ subnet_prv_sub_2_result.subnet.id }}\"\n region: \"{{ region }}\"\n wait: yes\n if_exist_do_not_create: true\n release_eip: true\n register:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 474,
"all_permissive": false
} |
ansible_role | SujathaGangireddy/hackathon | 41a096491b20d9d4c0ac9e19db5d3b83a37eacd1 | 0 | Hackathon_codes/roles/security_group | 8,178 | [
"no_license"
] | [
{
"path": "Hackathon_codes/roles/security_group/tasks/main.yml",
"content": "---\n- name: create ec2 security group for 1st VPC\n ec2_group:\n vpc_id: \"{{ ec2_vpc_1_result.vpc.id }}\"\n region: \"{{ region }}\"\n state: present\n name: \"{{ security_group_name_1 }}\"\n description: \"{{ sec... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1462,
"all_permissive": false
} |
ansible_role | SujathaGangireddy/hackathon | 41a096491b20d9d4c0ac9e19db5d3b83a37eacd1 | 0 | Hackathon_codes/roles/vpc_peering_n_route_table | 8,178 | [
"no_license"
] | [
{
"path": "Hackathon_codes/roles/vpc_peering_n_route_table/vars/main.yml",
"content": "---\nregion: us-east-2\nroute_table_1_name: Hackathon_Pub_VPC1_RT\ncidr_traffic_range: 0.0.0.0/0\nroute_table_2_name: Hackathon_Prv_VPC2_RT\ncidr_vpc1_range: 10.0.0.0/26\ncidr_vpc2_range: 10.1.0.0/26\n",
"license_type... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1937,
"all_permissive": false
} |
ansible_role | goutammantri/Devops-project | 95426e12e7da8c5b4601702295a0c02f76fbc81e | 0 | roles/install Webserver | 8,178 | [
"no_license"
] | [
{
"path": "roles/install Webserver/meta/main.yml",
"content": "Project_info:\n author: <NAME>\n description: Install and manage a httpd server\n company: N/A\n license: N/A\n min_ansible_version: 1.8\n platforms:\n - name: Redhat \n versions:\n - 7\n - 6\ncategories:\n - web",
"license_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2905,
"all_permissive": false
} |
ansible_role | silvax/devops-demo | 2c317eedb8047e0af33b8367735aa0decc57e12f | 0 | setup/roles/webserver | 8,178 | [
"no_license"
] | [
{
"path": "setup/roles/webserver/tasks/main.yml",
"content": "- name: install packages\n yum: name=httpd state=present\n\n- name: install something else\n yum: name=php state=present\n\n- name: enable apache on startup and start service\n service: name=httpd enabled=yes state=started\n",
"license_typ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 219,
"all_permissive": false
} |
ansible_role | TheCallumInglis/hosting.infra | 18a1265601c55942839ee9d7baea02c452da0652 | 0 | ansible/roles/apache | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/apache/tasks/main.yml",
"content": "- name: Install Apache\n apt:\n name: apache2\n state: present\n\n- name: Replace HTTP port 80 binding with 18080\n lineinfile:\n path: /etc/apache2/ports.conf\n regexp: \"^Listen 80\"\n state: absent\n notify: Restart Apache\n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 630,
"all_permissive": false
} |
ansible_role | TheCallumInglis/hosting.infra | 18a1265601c55942839ee9d7baea02c452da0652 | 0 | ansible/roles/docker | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/docker/tasks/main.yml",
"content": "- name: Install Docker\n apt:\n name: docker.io\n state: present\n\n- name: Configure Docker to not modify iptables\n copy:\n dest: /etc/docker/daemon.json\n content: |\n {\n \"iptables\": false\n }\n mode: '0644'... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 954,
"all_permissive": false
} |
ansible_role | TheCallumInglis/hosting.infra | 18a1265601c55942839ee9d7baea02c452da0652 | 0 | ansible/roles/nginx | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yml",
"content": "- name: Deploy Nginx Proxy Manager\n docker_container:\n name: nginx-proxy-manager\n image: \"jc21/nginx-proxy-manager:latest\"\n state: started\n restart_policy: always\n networks:\n - name: proxy-network\n ports:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 360,
"all_permissive": false
} |
ansible_role | TheCallumInglis/hosting.infra | 18a1265601c55942839ee9d7baea02c452da0652 | 0 | ansible/roles/security | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/security/tasks/main.yml",
"content": "- name: Set up UFW - Allow SSH\n ufw:\n rule: allow\n port: \"22\"\n proto: tcp\n\n- name: Set up UFW - Allow HTTP \n ufw:\n rule: allow\n port: \"80\"\n proto: tcp\n\n\n- name: Set up UFW - Allow Nginx Proxy Manager from WG... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1136,
"all_permissive": false
} |
ansible_role | TheCallumInglis/hosting.infra | 18a1265601c55942839ee9d7baea02c452da0652 | 0 | ansible/roles/wireguard | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/wireguard/tasks/main.yml",
"content": "- name: Create WireGuard config directory\n file:\n path: /opt/wireguard\n state: directory\n mode: '0755'\n\n- name: Assign Internal IP (10.66.0.1) to host on eth0\n command: ip addr add 10.66.0.1/24 dev eth0\n ignore_errors: true\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1676,
"all_permissive": false
} |
ansible_role | TheCallumInglis/hosting.infra | 18a1265601c55942839ee9d7baea02c452da0652 | 0 | ansible/roles/zabbix | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/zabbix/templates/zabbix_agentd.conf.j2",
"content": "Server={{ zabbix_server }}\nServerActive={{ zabbix_server }}\nHostname={{ ansible_hostname }}\nLogFile=/var/log/zabbix/zabbix_agentd.log\nAllowKey=system.run[*]\nLogRemoteCommands=1\nLogFileSize=128\nTLSConnect=psk\nTLSAccept=psk\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2155,
"all_permissive": false
} |
ansible_role | hammygoonan/lemp-vagrant-box | 3211ab78ad129e85445ad5d5337b4bce6cfe89af | 0 | cfg/roles/mariadb | 8,178 | [
"no_license"
] | [
{
"path": "cfg/roles/mariadb/tasks/main.yml",
"content": "---\n- name: Install server\n package: name={{ item }} state=present\n with_items:\n - mariadb-server\n - python-mysqldb\n notify:\n - start mysql\n\n- name: Change root password\n mysql_user:\n name: root\n host: localhost\n pa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 743,
"all_permissive": false
} |
ansible_role | hammygoonan/lemp-vagrant-box | 3211ab78ad129e85445ad5d5337b4bce6cfe89af | 0 | cfg/roles/nginx | 8,178 | [
"no_license"
] | [
{
"path": "cfg/roles/nginx/handlers/main.yml",
"content": "---\n- name: start nginx\n service: name=nginx enabled=yes state=started\n\n- name: reload nginx\n service: name=nginx state=reloaded\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 131
},
{
"path": "cf... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 394,
"all_permissive": false
} |
ansible_role | hammygoonan/lemp-vagrant-box | 3211ab78ad129e85445ad5d5337b4bce6cfe89af | 0 | cfg/roles/php | 8,178 | [
"no_license"
] | [
{
"path": "cfg/roles/php/tasks/main.yml",
"content": "---\n- name: Install PHP\n package: name={{ item }} state=present\n with_items:\n - php-fpm\n - php-mysql\n notify:\n - start php-fpm\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 139
},
{
"path"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 218,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/apache | 8,178 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": " - name: install_apache2\n apt:\n name: apache2\n update_cache: yes\n state: latest\n\n - name: install_packages_php\n apt: name={{ item }} update_cache=yes state=latest\n with_items:\n - php\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4411,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/apache1 | 8,178 | [
"no_license"
] | [
{
"path": "roles/apache1/tasks/main.yml",
"content": " - name: Remove file_config\n ansible.builtin.file:\n path: /etc/apache2/sites-available/000-default.conf\n state: absent\n\n - name: Copy_config_file\n copy:\n src: /etc/ansible/roles/apache1/files/000-default.conf\n dest: /etc/apach... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/apache2 | 8,178 | [
"no_license"
] | [
{
"path": "roles/apache2/tasks/main.yml",
"content": " - name: Remove file_config\n ansible.builtin.file:\n path: /etc/apache1/sites-available/000-default.conf\n state: absent\n\n - name: Copy_config_file\n copy:\n src: /etc/ansible/roles/apache2/files/000-default.conf\n dest: /etc/apach... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 505,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/grafana | 8,178 | [
"no_license"
] | [
{
"path": "roles/grafana/tasks/main.yml",
"content": " - name: adduser libfontconfig1\n shell: apt-get install -y adduser libfontconfig1\n\n - name: Download grafana\n shell: wget https://dl.grafana.com/oss/release/grafana_10.0.3_amd64.deb\n\n - name: dpkg grafana\n shell: dpkg -i grafana_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 491,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/mysql | 8,178 | [
"no_license"
] | [
{
"path": "roles/mysql/files/bkp_dump.sh",
"content": "#!/bin/bash\ndate = 'date +%Y%m%d'\nmysqladmin --user=root --password=<PASSWORD> stop-slave\nmysqldump --user=root --password=<PASSWORD> --lock-all-tables \\\n --all-databases > /home/alex/backups/backup-${date}.sql\nmysqladmin --user=root --pa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1823,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/mysql-master | 8,178 | [
"no_license"
] | [
{
"path": "roles/mysql-master/tasks/main.yml",
"content": " - name: Create repl user with remote access\n mysql_user:\n name: repl\n password: <PASSWORD>\n priv: '*.*:REPLICATION SLAVE'\n host: '%'\n append_privs: yes\n login_user: root\n login_passwo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 563,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/mysql-slave | 8,178 | [
"no_license"
] | [
{
"path": "roles/mysql-slave/tasks/main.yml",
"content": " - name: Chenge ID mysql\n lineinfile:\n path: /etc/mysql/mysql.conf.d/mysqld.cnf\n line: 'server_id = 2'\n backup: yes\n\n - name: restart_mysql\n service:\n name: mysql\n state: restarted\n\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1411,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/nginx | 8,178 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": " - name: install_nginx\n apt:\n name: nginx\n update_cache: yes\n state: latest\n\n - name: Copy_file_config\n ansible.builtin.copy:\n src: /etc/ansible/roles/nginx/files/default\n dest: /etc/ngin... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 403,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/node_exporter | 8,178 | [
"no_license"
] | [
{
"path": "roles/node_exporter/tasks/main.yml",
"content": " - name: create node exporter user\n user:\n name: node_exporter\n append: true\n shell: /usr/sbin/nologin\n system: true\n create_home: false\n\n - name: create_downloads_directory\n file:\n st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1233,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/prometheus | 8,178 | [
"no_license"
] | [
{
"path": "roles/prometheus/tasks/main.yml",
"content": " - name: Create downloads directory\n file:\n state: directory\n path: /root/download_files/\n\n - name: Create prometheus system group\n ansible.builtin.group:\n name: prometheus\n system: true\n state: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3029,
"all_permissive": false
} |
ansible_role | WarmBreez/Otus_project | 0618deabd89780c167dd0956413b91c598b0d9c8 | 0 | roles/prometheus_source | 8,178 | [
"no_license"
] | [
{
"path": "roles/prometheus_source/tasks/main.yml",
"content": "# - name: Change admin user\n# lineinfile:\n# path: /etc/grafana/grafana.ini\n# regexp: \"{{ item.before }}\"\n# line: \"{{ item.after }}\"\n# with_items:\n# - { before: \"^;admin_user = admin\", after: \"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 670,
"all_permissive": false
} |
ansible_role | cccra/nas-setup | 433b2ecfa48b43dd0ba0dcf9643b376d0e6fd1ba | 0 | roles/docker | 8,178 | [
"permissive"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "---\n- include_tasks: repo_arch.yml\n\n- name: Include OS-specific variables\n include_vars: \"{{ ansible_facts['distribution'] }}.yml\"\n- name: Install required system packages\n package:\n state: present\n name: \"{{ docker_deps }}\"\n\n- name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3618,
"all_permissive": true
} |
ansible_role | cccra/nas-setup | 433b2ecfa48b43dd0ba0dcf9643b376d0e6fd1ba | 0 | roles/neovim | 8,178 | [
"permissive"
] | [
{
"path": "roles/neovim/tasks/main.yml",
"content": "- name: Install Neovim python modules\n pip:\n name:\n - pynvim\n\n- name: Grab the latest Neovim release\n get_url:\n url: \"https://github.com/neovim/neovim/releases/download/stable/nvim.appimage\"\n dest: /usr/local/bin/nvim\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 819,
"all_permissive": true
} |
ansible_role | cccra/nas-setup | 433b2ecfa48b43dd0ba0dcf9643b376d0e6fd1ba | 0 | roles/system | 8,178 | [
"permissive"
] | [
{
"path": "roles/system/tasks/dotfiles.yml",
"content": "---\n- name: Clone the latest dotfiles repo\n become_user: '{{ username }}'\n git:\n repo: '{{ dotfiles_repo }}'\n dest: '/home/{{ username }}/.local/src/dotfiles'\n recursive: no\n force: yes\n\n- name: Chown the repo\n file:\n... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3504,
"all_permissive": true
} |
ansible_role | woranhun/wordpress_ansible_my | 3a3410438913c69f33997baa81b4fddf63509f21 | 0 | roles/phpmyadmin | 8,178 | [
"no_license"
] | [
{
"path": "roles/phpmyadmin/tasks/main.yml",
"content": "---\n# tasks file for phpmyadmin\n- name: Update apt cache\n apt: update_cache=yes cache_valid_time=3600\n sudo: yes\n- name: Install required software\n apt: name={{ item }} state=present\n sudo: yes\n with_items:\n - phpmyadmin\n - php-mb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 268,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/arduino | 8,178 | [
"no_license"
] | [
{
"path": "roles/arduino/tasks/main.yml",
"content": "---\n- name: Install Arduino\n pacman:\n state: present\n name:\n - arduino\n - arduino-avr-core\n\n- name: Add {{ user.name }} to uucp & lock groups\n user: name={{ user.name }} groups=uucp,lock append=yes\n",
"license_type": "no_l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 216,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/backup | 8,178 | [
"no_license"
] | [
{
"path": "roles/backup/tasks/main.yml",
"content": "---\n- name: Install borg\n pacman:\n state: present\n name:\n - python-llfuse\n - borg\n\n- name: Create backup user\n user: name=borgbackup state=present\n\n- name: Backup disk on raspberry\n ansible.posix.mount:\n path: \"{{ repo_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 826,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/base | 8,178 | [
"no_license"
] | [
{
"path": "roles/base/tasks/power.yml",
"content": "---\n- name: Install Power management\n pacman:\n state: present\n name:\n - acpid\n - acpi\n - powertop\n\n- name: Enable ACPID\n service: name=acpid.service enabled=yes\n",
"license_type": "no_license",
"detected_licenses":... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2104,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/bitcoin | 8,178 | [
"no_license"
] | [
{
"path": "roles/bitcoin/tasks/btc-manual.yml",
"content": "---\n- name: Download bitcoin core node\n get_url:\n url: \"https://bitcoincore.org/bin/bitcoin-core-27.1/bitcoin-27.1-x86_64-linux-gnu.tar.gz\"\n dest: \"{{ ansible_env.HOME }}/bitcoin-27.1-x86_64-linux-gnu.tar.gz\"\n timeout: 300\n c... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 37120,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/bluetooth | 8,178 | [
"no_license"
] | [
{
"path": "roles/bluetooth/tasks/main.yml",
"content": "- name: Install bluetooth libraries and tools\n pacman:\n state: present\n name:\n - blueman\n - bluez\n - bluez-libs\n - bluez-utils\n - pulseaudio-alsa\n - pulseaudio-bluetooth\n notify:\n - restart pulse as u... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 811,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/cardano | 8,178 | [
"no_license"
] | [
{
"path": "roles/cardano/files/cardano_node.py",
"content": "#!/usr/bin/env python3\n\nfrom .agent_based_api.v1 import *\nimport json\n\n\ndef discover_cardano_node(section):\n for network, _ in zip([\"mainnet\", \"preview\"], section):\n yield Service(item=network)\n\n\ndef check_cardano_node(ite... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 10816,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/development | 8,178 | [
"no_license"
] | [
{
"path": "roles/development/tasks/fonts.yml",
"content": "---\n- name: Install core fonts\n pacman:\n state: present\n name:\n - terminus-font\n - noto-fonts\n - ttf-dejavu\n - ttf-liberation\n - ttf-droid\n - ttf-ubuntu-font-family\n\n- name: Install Font-Awesome\n pa... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1039,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/dotfiles | 8,178 | [
"no_license"
] | [
{
"path": "roles/dotfiles/tasks/main.yml",
"content": "---\n- name: Create main user\n user:\n name: \"{{ user.name }}\"\n state: present\n create_home: yes\n groups: video\n append: yes\n\n- name: Clone Chemacs\n git:\n repo: https://github.com/plexus/chemacs2.git\n dest: /home/{{ us... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 830,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/languages | 8,178 | [
"no_license"
] | [
{
"path": "roles/languages/tasks/main.yml",
"content": "---\n- name: Install nodejs\n pacman:\n state: present\n name:\n - nodejs\n - npm\n - eslint\n - prettier\n tags: javascript\n when: \"'javascript' in activate\"\n\n- name: Install python\n pacman:\n state: present\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1338,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/monitoring | 8,178 | [
"no_license"
] | [
{
"path": "roles/monitoring/tasks/main.yml",
"content": "---\n- name: Install logwatch\n pacman:\n state: present\n name:\n - logwatch\n - perl-date-manip\n\n- name: Configure logwatch\n template: src=logwatch.conf.j2 dest=/etc/logwatch/conf/logwatch.conf\n\n# - name: Configure weekly logw... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2636,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/multimedia | 8,178 | [
"no_license"
] | [
{
"path": "roles/multimedia/tasks/main.yml",
"content": "---\n- name: Install imagemagick and dependencies\n pacman:\n state: present\n name:\n - libraw\n - libpng\n - librsvg\n - openjpeg2\n - imagemagick\n tags:\n - imagemagick\n\n- name: Install GIMP\n pacman:\n st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1233,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/networking | 8,178 | [
"no_license"
] | [
{
"path": "roles/networking/templates/sshd_config.j2",
"content": "# -*- mode: conf-unix; -*-\n{{ ansible_managed | comment }}\n#\n# Include drop-in configurations\nInclude /etc/ssh/sshd_config.d/*.conf\n\n# This is the sshd server system-wide configuration file. See\n# sshd_config(5) for more information.... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 7032,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/numerical | 8,178 | [
"no_license"
] | [
{
"path": "roles/numerical/tasks/main.yml",
"content": "---\n- name: Install boost\n pacman: name=boost state=present\n\n- name: Install fortran\n pacman: name=gcc-fortran state=present\n\n- name: Install rtags\n aur: name=rtags user={{ user.name }} dir=/tmp\n\n- name: Install universal-ctags-git\n aur:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 624,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/office | 8,178 | [
"no_license"
] | [
{
"path": "roles/office/tasks/main.yml",
"content": "---\n- name: Install Okular\n pacman:\n state: present\n name: okular\n\n- name: Install SQLiteBrowser\n pacman:\n state: present\n name: sqlitebrowser\n\n- name: Install poppler\n pacman:\n state: present\n name:\n - poppler\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1322,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/postgresql | 8,178 | [
"no_license"
] | [
{
"path": "roles/postgresql/handlers/main.yml",
"content": "---\n- name: restart postgresql\n service:\n name: postgresql\n state: restarted\n sleep: 5\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
},
{
"path": "roles/postgresql/templates/postgresq... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4749,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/secrets | 8,178 | [
"no_license"
] | [
{
"path": "roles/secrets/tasks/main.yml",
"content": "---\n- name: Install gnupg\n pacman:\n state: present\n name:\n - gnupg\n - pcsclite\n - ccid\n\n- name: Install pass\n pacman:\n state: present\n name:\n - pass\n - xclip\n - dmenu\n - qrencode\n - p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 258,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/servers | 8,178 | [
"no_license"
] | [
{
"path": "roles/servers/tasks/main.yml",
"content": "---\n- name: Install ansible tools\n pacman:\n state: present\n name:\n - python-passlib # pass management on remotes\n - python-netaddr # ipwrap filter for remotes\n\n- name: Install Virtualbox\n pacman:\n state: present\n name:\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 770,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/sound | 8,178 | [
"no_license"
] | [
{
"path": "roles/sound/handlers/main.yml",
"content": "---\n- name: restart pulse as user\n systemd: name=pulseaudio.service user=yes state=restarted\n become: yes\n become_user: \"{{ user.name }}\"\n environment:\n XDG_RUNTIME_DIR: \"/run/user/{{ user.uid }}\"\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 707,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/spell | 8,178 | [
"no_license"
] | [
{
"path": "roles/spell/tasks/main.yml",
"content": "---\n- name: Install hunspell\n pacman:\n state: present\n name:\n - hunspell\n - hunspell-en_US\n - hunspell-es_any\n - hunspell-de\n - hunspell-fr\n tags:\n - hunspell\n\n- name: Install aspell\n pacman:\n state: p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 366,
"all_permissive": false
} |
ansible_role | Titan-C/archlinux-ansible | c4fd9e1893d0aeeac8f01954dfa4f4cecb58d3e6 | 3 | roles/x | 8,178 | [
"no_license"
] | [
{
"path": "roles/x/tasks/awesome.yml",
"content": "---\n- name: Install awesome WM\n pacman:\n state: present\n name:\n - awesome\n - xorg-server-xephyr\n\n- name: Install display manager lightdm\n pacman:\n state: present\n name:\n - lightdm\n - lightdm-webkit-theme-litarv... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2221,
"all_permissive": false
} |
ansible_role | jainmickey/mybullet | d5c4b2e3e2491a7735b709cd00d251d1fa06874b | 0 | provisioner/roles/project_data | 8,178 | [
"no_license"
] | [
{
"path": "provisioner/roles/project_data/tasks/main.yml",
"content": "---\n- name: get the latest code\n git: repo={{ project_repo_url }} dest={{ project_path }} version={{ repo_version }} accept_hostkey=true\n become: false\n when: vm is undefined\n tags: ['deploy', 'always']\n\n- name: manually creat... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1654,
"all_permissive": false
} |
ansible_role | Taldah/ansible-demo | e083789adc58fea945b6c4c0a6cbc407c86234d6 | 0 | roles/common | 8,178 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: install vim & zip\n ansible.builtin.apt: name=vim,zip state=present\n\n\n- name: Copy tal.txt\n ansible.builtin.copy: src=tal.txt dest=/tmp\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 145
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 145,
"all_permissive": false
} |
ansible_role | ratnamu/aws-websecurity | fa4478d03b003d422284069e0a5f00e3c85a0710 | 0 | ansible_playbook/roles/webserver | 8,178 | [
"no_license"
] | [
{
"path": "ansible_playbook/roles/webserver/tasks/main.yml",
"content": " - name: Install Apache\n yum: name=httpd state=installed \n become_user: root\n become: true \n\n - name: Write the apache config file\n template: src=/home/ec2-user/ansibl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3161,
"all_permissive": false
} |
ansible_role | ratnamu/aws-websecurity | fa4478d03b003d422284069e0a5f00e3c85a0710 | 0 | validate_config_playbook/roles/common | 8,178 | [
"no_license"
] | [
{
"path": "validate_config_playbook/roles/common/tasks/main.yml",
"content": " - name: GIT checkout \n git: repo=https://github.com/ratnamu/aws-websecurity dest=~/ansible clone=yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 105
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 105,
"all_permissive": false
} |
ansible_role | ratnamu/aws-websecurity | fa4478d03b003d422284069e0a5f00e3c85a0710 | 0 | validate_config_playbook/roles/web_validation | 8,178 | [
"no_license"
] | [
{
"path": "validate_config_playbook/roles/web_validation/vars/main.yml",
"content": " http_port: 80\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 15
},
{
"path": "validate_config_playbook/roles/web_validation/files/validate_apache_config.sh",
"content": "#!... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 563,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/basic | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/basic/tasks/main.yml",
"content": "- name: Setting up server with basic configuration on {{ inventory_hostname }}\n block:\n - name: Update and upgrade apt packages on {{ inventory_hostname }}\n apt:\n upgrade: yes\n update_cache: yes\n cache_valid_time... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3955,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/blackbox_exporter | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/blackbox_exporter/tasks/main.yml",
"content": "- name: Setting up server with Blackbox exporter on {{ inventory_hostname }}\n block:\n - import_tasks: 01-prepare_required_packages.yml\n tags: [prepare_packages]\n\n - import_tasks: 02-configure_network.yml\n tags: [c... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6733,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/cordra | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/cordra/tasks/01-prepare_required_packages.yml",
"content": "---\n- name: Preparing required packages on {{ inventory_hostname }}\n block:\n - name: Install required package dependencies on {{ inventory_hostname }}\n apt:\n name: \"{{packages}}\"\n state: prese... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 31215,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/ds_viewer | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/ds_viewer/tasks/02-setup_ds_viewer.yml",
"content": "---\n- name: Setup DS Viewer on {{ inventory_hostname }}\n block:\n - name: Ansible check ds_viewer application exists on {{ inventory_hostname }}\n stat:\n path: \"{{ ds_viewer.dir }}\"\n register: ds_app_dir... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 10085,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/elasticsearch | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/elasticsearch/vars/main.yml",
"content": "---\n# variables associated with this role\njava_home: /usr/lib/jvm/java-8-openjdk-amd64\n\nos_environment_variables:\n - key: ES_HOME\n value : \"{{ elasticsearch.dir }}\"\n - key: JAVA_HOME\n value: \"{{ java_home }}\"",
"licen... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 10396,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/filebeat | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/filebeat/tasks/main.yml",
"content": "- name: Setting up server with Filebeat on {{ inventory_hostname }}\n block:\n - import_tasks: 01-prepare_required_packages.yml\n tags: [prepare_packages]\n\n - import_tasks: update_app_checker.yml\n vars:\n app_dir: \"{{... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3920,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/grafana | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/grafana/vars/main.yml",
"content": "---\n# variables associated with this role\n\nos_environment_variables:\n - key: GRAFANA_HOME\n value : \"{{ grafana.dir }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 123
},
{
"path": "ansibl... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 32160,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/kibana | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/kibana/templates/systemd/kibana.service.j2",
"content": "[Unit]\nDescription=Kibana\nWants=network.target\nAfter=network.target\n\n[Service]\nType=simple\nWorkingDirectory={{ kibana.dir }}\nExecStart={{ kibana.dir }}/bin/kibana\nExecStartPost={{ server.apps_dir}}/check_port.sh {{ ki... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4742,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/logstash | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/logstash/meta/main.yml",
"content": "---\n# role dependencies",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 23
},
{
"path": "ansible/roles/logstash/tasks/03-setup_logstash.yml",
"content": "---\n- name: Setup Logstash on {{ inventory_... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 5882,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/mongodb | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/mongodb/tasks/05-backup_mongodb.yml",
"content": "---\n- name: Setup Backup Mongodb on {{ inventory_hostname }}\n block:\n # Download MongoDB distribution and unzip in /opt as zip has folder mongodb-x.x.x\n - name: Download AWS cli on {{ inventory_hostname }}\n unarchive... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 17005,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/monitoring_proxy | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/monitoring_proxy/tasks/main.yml",
"content": "- name: Setting up server with Grafana on {{ inventory_hostname }}\n block:\n - include_role:\n name: nginx\n vars:\n sites:\n monitoring_proxy:\n ssl_enabled: false\n external_port: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 737,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/nginx | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yml",
"content": "- name: Setting up server with Nginx on {{ inventory_hostname }}\n block:\n - import_tasks: 01-prepare_required_packages.yml\n tags: [prepare_packages]\n\n - import_tasks: 02-configure_network.yml\n tags: [configure_network]\n\n ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 6722,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/node_exporter | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/node_exporter/tasks/main.yml",
"content": "- name: Setting up server with Node exporter on {{ inventory_hostname }}\n block:\n - import_tasks: 01-prepare_required_packages.yml\n tags: [prepare_packages]\n\n - import_tasks: 02-configure_network.yml\n tags: [configure... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4501,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/object_detection_service | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/object_detection_service/templates/object_detection_service/cordraConfig.json.j2",
"content": "{\n \"url\": \"https://{{ cordra.cordra_nsidr_server.domain }}\",\n \"credentials\":{\n \"username\": \"objectDetectionServiceUploader\",\n \"password\": \"{% for cordra_user in co... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5029,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/prometheus | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/prometheus/templates/prometheus/prometheus.yml.j2",
"content": "# https://prometheus.io/docs/prometheus/latest/configuration/configuration/\nglobal:\n scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.\n evaluation_interval: 15s # Ev... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 8213,
"all_permissive": false
} |
ansible_role | DiSSCo/ecoi_infrastructure_deployer | 0bbd2ab7bd2e13830b4cfa1dd951478ccb3450e9 | 0 | ansible/roles/rdf_validator | 8,178 | [
"no_license"
] | [
{
"path": "ansible/roles/rdf_validator/tasks/02-configure_network.yml",
"content": "---\n- name: Configure network on {{ inventory_hostname }}\n # Comment: Currently no ports are opened because the rdf validation service\n # has not authentication and should meanwhile only be accessible internally from 12... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4160,
"all_permissive": false
} |
ansible_role | MaduHetic/madu-back | 08f8317dcd12781addd7e6b24916a77308e79647 | 0 | infra/ansible/roles/back | 8,178 | [
"no_license"
] | [
{
"path": "infra/ansible/roles/back/templates/docker-compose.yml",
"content": "version: \"3.1\"\n\nservices:\n database:\n image: mysql:5.7\n environment:\n MYSQL_ROOT_PASSWORD: {{ application_db_root_password }}\n MYSQL_DATABASE: {{ application_db_name }}\n MYSQL_USER: {{ application_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1495,
"all_permissive": false
} |
ansible_role | MaduHetic/madu-back | 08f8317dcd12781addd7e6b24916a77308e79647 | 0 | infra/ansible/roles/python | 8,178 | [
"no_license"
] | [
{
"path": "infra/ansible/roles/python/tasks/main.yml",
"content": "- name: 'install python2'\n become: true\n raw: apt update && apt-get -y install python\n tags: [\"install\"]\n\n- name: Gather facts\n setup:\n\n- name: install packages\n become: true\n apt:\n pkg:\n - python-setuptools\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 399,
"all_permissive": false
} |
ansible_role | Hashlama-016/developer-portal | e6b603801fd395f37a2098cc960982f396723b5a | 1 | rundeck-installation/roles/install-nginx | 8,178 | [
"no_license"
] | [
{
"path": "rundeck-installation/roles/install-nginx/tasks/main.yaml",
"content": "---\n- name: Install Nginx\n apt:\n name:\n - nginx\n state: present\n update_cache: yes\n\n- name: Ensure Nginx service is running\n service:\n name: nginx\n state: started\n enabled: yes\n\n- name: C... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 607,
"all_permissive": false
} |
ansible_role | zilux/ziluxtools_collection_devel | 8039a6af72b4b435e7dc080ab994021e318564d6 | 0 | collections/ansible_collections/zilux/tools/roles/bootstrap | 8,178 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/zilux/tools/roles/bootstrap/tasks/main.yml",
"content": "---\n# tasks file for roles/basehost\n- name: Start baseline \n debug:\n msg: let's go\n\n- name: add group\n group:\n name: \"{{ boostrap_user_name }}\"\n gid: \"{{ bootstrap_group_id }}\" \n\n- n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1827,
"all_permissive": false
} |
ansible_role | zilux/ziluxtools_collection_devel | 8039a6af72b4b435e7dc080ab994021e318564d6 | 0 | collections/ansible_collections/zilux/tools/roles/check | 8,178 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/zilux/tools/roles/check/tasks/main.yml",
"content": "---\n# tasks file for roles/check\n\n- name: Gather some facts \n gather_hz_facts:\n register: hz_facts \n\n- debug: \n var: hz_facts\n when:\n - (ansible_facts.my_errors|length) != 0\n\n- name: check if... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 582,
"all_permissive": false
} |
ansible_role | zilux/ziluxtools_collection_devel | 8039a6af72b4b435e7dc080ab994021e318564d6 | 0 | collections/ansible_collections/zilux/tools/roles/env_ansible | 8,178 | [
"no_license"
] | [
{
"path": "collections/ansible_collections/zilux/tools/roles/env_ansible/vars/main.yml",
"content": "---\n# vars file for roles/env_ansible\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
},
{
"path": "collections/ansible_collections/zilux/tools/roles/env_ansi... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2159,
"all_permissive": false
} |
ansible_role | bingops-com/pz-server | 9a783285998f3ba0083a4d426bc42a39414a11e8 | 1 | roles/firewall | 8,171 | [
"no_license"
] | [
{
"path": "roles/firewall/tasks/main.yml",
"content": "---\n\n- name: Include install tasks\n ansible.builtin.include_tasks: install.yml\n\n- name: Include configure tasks\n ansible.builtin.include_tasks: configure.yml\n\n- name: Include rules tasks\n ansible.builtin.include_tasks: rules.yml\n\n- name: I... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2291,
"all_permissive": false
} |
ansible_role | bingops-com/pz-server | 9a783285998f3ba0083a4d426bc42a39414a11e8 | 1 | roles/playit | 8,171 | [
"no_license"
] | [
{
"path": "roles/playit/templates/playit.service.j2",
"content": "[Unit]\nDescription=Playit service\nAfter=network.target\n\n[Service]\nExecStart=/usr/local/bin/playit start\nRestart=always\nUser={{ playit_user }}\nGroup={{ playit_user }}\n\n[Install]\nWantedBy=multi-user.target\n",
"license_type": "no... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 982,
"all_permissive": false
} |
ansible_role | bingops-com/pz-server | 9a783285998f3ba0083a4d426bc42a39414a11e8 | 1 | roles/server | 8,171 | [
"no_license"
] | [
{
"path": "roles/server/tasks/prereqs.yml",
"content": "---\n\n- name: Update and upgrade apt packages\n ansible.builtin.apt:\n update_cache: true\n upgrade: dist\n force_apt_get: true\n\n- name: Install dependencies\n ansible.builtin.apt:\n name:\n - software-properties-common\n - l... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 15522,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/buxfer-sync | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/buxfer-sync/tasks/main.yaml",
"content": "---\n- name: Copy Buxfer Sync Script\n template:\n src: buxfer_sync.py.j2\n dest: /usr/local/bin/buxfer_sync.py\n mode: 0755\n\n- name: Install python3-selenium\n apt:\n name: python3-selenium\n state: present\n\n- name: Cro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3362,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/k3s-fluxcd-bootstrap | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-fluxcd-bootstrap/tasks/main.yaml",
"content": "#---\n#- name: Install Flux CLI\n# shell: |\n# curl -s https://fluxcd.io/install.sh | bash\n# args:\n# creates: /usr/local/bin/flux\n#\n#- name: Set KUBECONFIG environment variable\n# shell: export KUBECONFIG=/etc/rancher/k... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 6488,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/k3s-fluxcd-reconcile | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-fluxcd-reconcile/tasks/main.yaml",
"content": "#- name: Reconcile the flux-system GitRepository source\n# command: flux --kubeconfig /etc/rancher/k3s/k3s.yaml reconcile source git flux-system -n flux-system\n\n- name: Reconcile the apps GitRepository source\n command: flux --k... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 940,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/k3s-github-runner | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-github-runner/tasks/main.yaml",
"content": "---\n- name: Fetch GitHub Runner Registration Token\n uri:\n url: \"https://api.github.com/repos/{{ github_repo }}/actions/runners/registration-token\"\n method: POST\n headers:\n Authorization: \"token {{ github_token }... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1897,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/k3s-pi-install | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-pi-install/tasks/main.yaml",
"content": "---\n- name: Ensure K3s is installed\n shell: \"command -v k3s\"\n register: k3s_installed\n changed_when: false\n failed_when: false\n\n- name: Ensure cgroup settings are added to the first line of cmdline.txt\n lineinfile:\n pat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1037,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/k3s-sops-age-secret | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-sops-age-secret/tasks/main.yml",
"content": "# brew install gpg\n# export GPG_TTY=$(tty)\n# gpg --full-generate-key (rsa/rsa 4096)\n# sops --encrypt --pgp \"D9B513707705B08EAB4D4071A663ED74C5A7646E\" --encrypted-regex '^(data)$' cloudflare-secret.yaml > cloudflare-secret-enc.yam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3377,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/mikrotik-dns | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/mikrotik-dns/tasks/main.yaml",
"content": "---\n- name: Add A DNS records\n community.routeros.command:\n commands: \"/ip dns static add name={{ item.name }}.{{ domain }} address={{ item.address }}\"\n with_items:\n - { name: \"vpn\", address: \"{{ router_ip }}\" }\n - { ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1679,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/moonlight | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/moonlight/tasks/main.yaml",
"content": "---\n- name: Ensure systemd directory exists for autologin configuration\n file:\n path: /etc/systemd/system/getty@tty1.service.d\n state: directory\n mode: '0755'\n\n- name: Create autologin configuration for tty1\n copy:\n dest... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1523,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/nextcloud-config | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/nextcloud-config/templates/autoconfig.php",
"content": "<?php\n$AUTOCONFIG = array(\n \"dbtype\" => \"pgsql\",\n \"dbname\" => \"nextcloud\",\n \"dbuser\" => \"admin\",\n \"dbpass\" => \"<PASSWORD>\",\n \"dbhost\" => \"postgres.database.svc.cl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1118,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/openfortivpn | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/openfortivpn/templates/openfortivpn.sh.j2",
"content": "#!/bin/bash\n\nCURL_ENDPOINT=\"{{ fortivpn_curl }}\"\n\n# Function to start VPN\nfortivpn () {\n openfortivpn -c /etc/openfortivpn/config\n}\n\n# Function to send keepalive requests while VPN is running\nkeepalive () {\n whil... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1164,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/pironman-install | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/pironman-install/tasks/main.yaml",
"content": "---\n- name: Check if Pironman is installed\n shell: \"command -v pironman5\"\n register: pironman_installed\n changed_when: false\n failed_when: false\n\n- name: Skip tasks if Pironman is already installed\n debug:\n msg: \"Pir... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 954,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/postgres-config | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/postgres-config/tasks/main.yaml",
"content": "---\n- name: Get the PostgreSQL pod name (StatefulSet)\n command: kubectl get pod -n database -l app=postgres -o jsonpath='{.items[0].metadata.name}'\n register: postgres_pod_name\n changed_when: false\n\n- name: Check if databases ex... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1715,
"all_permissive": false
} |
ansible_role | CalebSargeant/monolithic-deploy | 38bfca53cbf73fabb109c6ffaa1dfcfe10071767 | 0 | ansible/roles/sudoers | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/sudoers/tasks/main.yaml",
"content": "- name: Ensure the user has sudo privileges without password\n copy:\n dest: /etc/sudoers.d/{{ ansible_ssh_user }}\n content: \"{{ ansible_ssh_user }} ALL=(ALL) NOPASSWD:ALL\"\n owner: root\n group: root\n mode: '0440'",
"lic... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 226,
"all_permissive": false
} |
ansible_role | FabOS-AI/fabos-slm-dc-docker-swarm | 7b22a346f79ec202a0123fc11fae4258d260260c | 0 | roles/use | 8,171 | [
"no_license"
] | [
{
"path": "roles/use/molecule/undeploy-centos8/molecule.yml",
"content": "---\ndependency:\n name: galaxy\ndriver:\n name: delegated\n\nplatforms:\n - name: centos8-1\n template_name: centos-stream-8\n groups:\n - docker_manager\n\n - name: centos8-2\n template_name: centos-stream-8\n g... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 27,
"total_bytes": 18881,
"all_permissive": false
} |
ansible_role | tjeufoolen/mac-setup | 23169f4179bb01d192e21910e157e39f159f161d | 0 | ansible/roles/git | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/git/tasks/main.yml",
"content": "- name: Install git\n homebrew:\n name: git\n state: present\n\n- name: Install git-lfs\n homebrew:\n name: git-lfs\n state: present\n\n- name: Set global Git username\n git_config:\n name: user.name\n scope: global\n value: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 700,
"all_permissive": false
} |
ansible_role | tjeufoolen/mac-setup | 23169f4179bb01d192e21910e157e39f159f161d | 0 | ansible/roles/homebrew | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/homebrew/tasks/main.yml",
"content": "- name: Ensure Homebrew is in the PATH\n ansible.builtin.lineinfile:\n path: ~/.zshrc\n line: export PATH=\"/opt/homebrew/bin:$PATH\"\n state: present\n insertbefore: EOF\n\n- name: Install brew packages\n homebrew:\n name: \"{{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 567,
"all_permissive": false
} |
ansible_role | tjeufoolen/mac-setup | 23169f4179bb01d192e21910e157e39f159f161d | 0 | ansible/roles/java | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/java/tasks/main.yml",
"content": "- name: Install jenv\n homebrew:\n name: jenv\n state: present\n\n- name: Ensure jenv is in PATH\n lineinfile:\n path: ~/.zshrc\n line: 'export PATH=\"$HOME/.jenv/bin:$PATH\"'\n state: present\n insertafter: EOF\n\n- name: Ensure... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1125,
"all_permissive": false
} |
ansible_role | tjeufoolen/mac-setup | 23169f4179bb01d192e21910e157e39f159f161d | 0 | ansible/roles/nodejs | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/nodejs/tasks/main.yml",
"content": "- name: Install node version manager\n homebrew:\n name: n\n state: present\n\n- name: Check latest node version\n command: n --latest\n register: node_latest_version\n changed_when: False\n\n- name: Check if latest node version is insta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 887,
"all_permissive": false
} |
ansible_role | tjeufoolen/mac-setup | 23169f4179bb01d192e21910e157e39f159f161d | 0 | ansible/roles/warp | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/warp/tasks/main.yml",
"content": "- name: Check if ~/.warp exists\n stat:\n path: ~/.warp\n register: warp_stat\n\n- name: Create ~/.warp directory if it doesn't exist\n file:\n path: ~/.warp\n state: directory\n mode: \"0755\"\n when: not warp_stat.stat.exists\n\n- ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 818,
"all_permissive": false
} |
ansible_role | tjeufoolen/mac-setup | 23169f4179bb01d192e21910e157e39f159f161d | 0 | ansible/roles/workspace | 8,171 | [
"no_license"
] | [
{
"path": "ansible/roles/workspace/tasks/main.yml",
"content": "- name: Create dev folder\n file:\n path: ~/Workspace\n state: directory\n mode: \"0755\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 94
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 94,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.