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 | jonjeous/CPE_MIDEXAM_RECTO | c64f7eb99fd9e8e666f5d29c022540349f0102c8 | 0 | roles/influxdb | 85 | [
"no_license"
] | [
{
"path": "roles/influxdb/tasks/main.yml",
"content": "---\n- name: Install InfluxDB\n apt:\n name: influxdb\n state: present\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Start InfluxDB service\n service:\n name: influxdb\n state: started\n enabled: yes\n when: ansible_distributi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 254,
"all_permissive": false
} |
ansible_role | jonjeous/CPE_MIDEXAM_RECTO | c64f7eb99fd9e8e666f5d29c022540349f0102c8 | 0 | roles/kibana | 85 | [
"no_license"
] | [
{
"path": "roles/kibana/tasks/main.yml",
"content": "---\n- name: Add Kibana APT key (Ubuntu)\n apt_key:\n url: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n when: ansible_distribution == \"Ubuntu\"\n become: true\n\n- name: Add Kibana repository (Ubuntu)\n apt_repository:\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 545,
"all_permissive": false
} |
ansible_role | jonjeous/CPE_MIDEXAM_RECTO | c64f7eb99fd9e8e666f5d29c022540349f0102c8 | 0 | roles/lampstack | 85 | [
"no_license"
] | [
{
"path": "roles/lampstack/tasks/main.yml",
"content": "---\n- name: install apache and php for CentOS\n tags: apache,centos,httpd\n yum:\n name:\n - httpd\n - php\n state: latest\n update_cache: yes\n when: ansible_distribution == \"CentOS\"\n\n- name: start httpd (CentOS)\n tags: ap... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 613,
"all_permissive": false
} |
ansible_role | jonjeous/CPE_MIDEXAM_RECTO | c64f7eb99fd9e8e666f5d29c022540349f0102c8 | 0 | roles/logstash | 85 | [
"no_license"
] | [
{
"path": "roles/logstash/tasks/main.yml",
"content": "---\n- name: Add Logstash APT key (Ubuntu)\n apt_key:\n url: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n when: ansible_distribution == \"Ubuntu\"\n become: true\n\n- name: Add Logstash repository (Ubuntu)\n apt_reposi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 553,
"all_permissive": false
} |
ansible_role | jonjeous/CPE_MIDEXAM_RECTO | c64f7eb99fd9e8e666f5d29c022540349f0102c8 | 0 | roles/nagios | 85 | [
"no_license"
] | [
{
"path": "roles/nagios/tasks/main.yml",
"content": "---\n- name: Install Nagios on Ubuntu\n apt:\n name: nagios3\n state: present\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Enable and start Nagios service (Ubuntu)\n service:\n name: nagios3\n state: started\n enabled: yes\n wh... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 279,
"all_permissive": false
} |
ansible_role | jonjeous/CPE_MIDEXAM_RECTO | c64f7eb99fd9e8e666f5d29c022540349f0102c8 | 0 | roles/prometheus | 85 | [
"no_license"
] | [
{
"path": "roles/prometheus/tasks/main.yml",
"content": "---\n- name: Install Prometheus on Ubuntu\n apt:\n name: prometheus\n state: present\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Start Prometheus service on Ubuntu\n systemd:\n name: prometheus\n state: started\n when: ansibl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 265,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/deploy_app | 85 | [
"no_license"
] | [
{
"path": "roles/deploy_app/templates/Dockerfile",
"content": "FROM python:3.6-alpine3.8\n\nCOPY requirements.txt /\n\nRUN apk --update add --no-cache postgresql postgresql-dev && \\\n apk --update add --no-cache --virtual build-dependencies \\\n build-base python-dev libffi-dev musl-dev && \\\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5766,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/docker_compose | 85 | [
"no_license"
] | [
{
"path": "roles/docker_compose/templates/app-docker-compose.yml.j2",
"content": "version: '2.1'\nservices:\n nginx:\n image: 'nginx:1.13-alpine'\n container_name: nginx\n restart: unless-stopped\n ports:\n - '80:80'\n links:\n - php-fpm\n - blacklisted\n volumes:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2485,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/gen_key_pair | 85 | [
"no_license"
] | [
{
"path": "roles/gen_key_pair/tasks/main.yml",
"content": "---\n- name: \"Make sure files dir exist\"\n file:\n path: \"{{ playbook_dir }}/files/\"\n state: \"directory\"\n\n- name: \"Check if id_rsa exist\"\n stat:\n path: \"{{ playbook_dir }}/files/id_rsa\"\n register: id_rsa_stat\n\n- name: \... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 893,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/linux_pre | 85 | [
"no_license"
] | [
{
"path": "roles/linux_pre/tasks/main.yml",
"content": "---\n- name: \"Wait for connection\"\n wait_for_connection:\n\n- name: \"Gather facts\"\n setup:\n\n- name: \"Update linux\"\n package:\n name: \"*\"\n state: \"present\"\n force_apt_get: true\n\n- name: \"Install required packages\"\n pac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1354,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/pos_config_db_master | 85 | [
"no_license"
] | [
{
"path": "roles/pos_config_db_master/tasks/main.yml",
"content": "---\n- name: \"Create replicate role on postgres\"\n shell:\n cmd: \"docker exec -u postgres pg_master psql -c 'CREATE ROLE replicate WITH REPLICATION LOGIN ;'\"\n chdir: \"docker-compose/\"\n ignore_errors: true\n",
"license_typ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 210,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/pre_config_db | 85 | [
"no_license"
] | [
{
"path": "roles/pre_config_db/templates/db-master-postgresql.conf.j2",
"content": "hba_file = '/etc/postgresql/pg_hba.conf'\nlisten_addresses = '*'\nmax_connections = 100\nshared_buffers = 128MB\ndynamic_shared_memory_type = posix\nwal_level = replica\nmax_wal_senders = 10\nwal_keep_segments = 64\nlog_time... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1262,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/pre_config_db_slave | 85 | [
"no_license"
] | [
{
"path": "roles/pre_config_db_slave/tasks/main.yml",
"content": "---\n- name: \"Check if docker-compose/data/pg_replslot exist\"\n stat:\n path: \"docker-compose/data/pg_replslot\"\n register: pg_replslot_stat\n\n- name: \"Postgres base backup from master\"\n shell:\n cmd: \"docker run -v ${PWD}/d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 866,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/run_terraform | 85 | [
"no_license"
] | [
{
"path": "roles/run_terraform/tasks/main.yml",
"content": "---\n- name: \"Execute terraform to create infrastructure\"\n terraform:\n project_path: \"{{ playbook_dir }}/terraform/\"\n state: \"present\"\n variables:\n aws_access_key: \"{{ aws_access_key }}\"\n aws_secret_key: \"{{ aws_s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1420,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/tests_from_localhost | 85 | [
"no_license"
] | [
{
"path": "roles/tests_from_localhost/tasks/blacklisted.yml",
"content": "---\n- name: \"Access /blacklisted URI to block the access to port 80\"\n uri:\n url: \"http://{{ item }}/blacklisted\"\n return_content: true\n timeout: 10\n with_items: \"{{ groups['app'] }}\"\n ignore_errors: true\n re... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3645,
"all_permissive": false
} |
ansible_role | davar-playgrounds/aws-postgres-cluster | 4066b409bee8547d19118f38f1dbd3eee8a3d24c | 0 | roles/tests_remote | 85 | [
"no_license"
] | [
{
"path": "roles/tests_remote/tasks/main.yml",
"content": "---\n- include_tasks: docker.yml\n- include_tasks: db.yml\n when: inventory_hostname in groups['db']\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 99
},
{
"path": "roles/tests_remote/tasks/docker.yml",... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3486,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/atftpd | 89 | [
"no_license"
] | [
{
"path": "roles/atftpd/tasks/main.yml",
"content": "---\n- setup:\n when: ansible_os_family is not defined\n\n- include_vars: '{{ item }}'\n with_first_found:\n - 'os_{{ ansible_os_family }}.yml'\n - os_default.yml\n\n- apt: state=present name='{{ atftpd_install_pkgs }}'\n\n- template: dest=/etc/de... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 3175,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/backup | 89 | [
"no_license"
] | [
{
"path": "roles/backup/tasks/groups_loop.yml",
"content": "---\n- synchronize:\n src: '{{ item }}'\n dest: '{{ backup_dest }}/{{ inventory_hostname }}'\n delete: yes\n mode: pull\n copy_links: no\n rsync_path: \"sudo rsync\"\n rsync_opts: '{{ backup_rsync_opts }}'\n loop: \"{{backup_s... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1953,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/bind | 89 | [
"no_license"
] | [
{
"path": "roles/bind/handlers/main.yml",
"content": "---\n- name: check and restart bind\n command: named-checkconf\n notify: restart bind\n\n- name: restart bind\n service: name={{ bind_service_name }} state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2288,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/cacti | 89 | [
"no_license"
] | [
{
"path": "roles/cacti/templates/apache2.conf",
"content": "<VirtualHost *:80>\n ServerName cacti.{{ domain }}\n Alias / /usr/share/cacti/site/\n\n <Directory /usr/share/cacti/site/>\n Options +FollowSymLinks\n AllowOverride None\n order allow,deny\n allow from all\n AddType application/x-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1674,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/common | 89 | [
"no_license"
] | [
{
"path": "roles/common/tasks/ssh.yml",
"content": "---\n- name: Create SSH Keys Dir\n file: dest=/etc/ssh/keys/ state=directory\n\n- name: SSH Copy Root Key\n copy: dest=/etc/ssh/keys/root content='{{ root_pubkey }}@{{ domain }}\\n'\n\n- name: SSH Server Config File\n template: src=ssh/sshd_config dest=... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 11096,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/curator | 89 | [
"no_license"
] | [
{
"path": "roles/curator/tasks/main.yml",
"content": "---\n# Installing pip\n- name: verify pip is installed\n apt: name=python-pip state=present\n\n# Installing Curator\n- name: Installing ES Curator\n pip: name=elasticsearch-curator state=present\n\n# Create directory for Curator\n- name: Create directo... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1076,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/debootstrap | 89 | [
"no_license"
] | [
{
"path": "roles/debootstrap/tasks/main.yml",
"content": "- name: Install debootstrap\n apt: state=present name=debootstrap\n\n- name: Include os specific variables\n include_vars: 'os_{{ debootstrap_os }}.yml'\n\n- stat: path=\"{{ debootstrap_path }}/etc\"\n register: debootstrap_etc\n\n- name: \"Deboot... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2916,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/dhcp_server | 89 | [
"no_license"
] | [
{
"path": "roles/dhcp_server/defaults/main.yml",
"content": "---\ndhcp_service_state: started\ndhcp_service_enabled: yes\ndhcp_common_nameservers: '8.8.8.8, 8.8.4.4'\ndhcp_common_default_lease_time: 600\ndhcp_common_max_lease_time: 7200\ndhcp_common_ddns_update_style: none\ndhcp_common_authoritative: true\n... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3632,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/elasticsearch | 89 | [
"no_license"
] | [
{
"path": "roles/elasticsearch/tasks/main.yml",
"content": "---\n#\n# Installing Elasticsearch\n#\n# Adds the apt-key for Elasticsearch\n- name: Add Elasticsearch apt-key\n apt_key: url=\"https://packages.elastic.co/GPG-KEY-elasticsearch\" state=present\n\n# Add the Elasticsearch APT-repository\n- name: Ad... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1158,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/kibana | 89 | [
"no_license"
] | [
{
"path": "roles/kibana/tasks/main.yml",
"content": "---\n# Installing Kibana\n#\n# Add Kibana APT-repository\n- name: Adding Kibana APT repository\n apt_repository:\n repo: deb https://artifacts.elastic.co/packages/5.x/apt stable main\n state: present\n\n# Install Kibana\n- name: Update repositories... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 863,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/kvm | 89 | [
"no_license"
] | [
{
"path": "roles/kvm/handlers/main.yml",
"content": "---\n- name: start console on ttyS1\n systemd: name=serial-getty@ttyS1 daemon_reload=yes enabled=yes state=started\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 114
},
{
"path": "roles/kvm/defaults/main.yml"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 339,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/logstash | 89 | [
"no_license"
] | [
{
"path": "roles/logstash/templates/simple.conf.j2",
"content": "input { \n udp {\n port => 50514\n type => syslog\n } \n }\n\nfilter {\n if [type] == \"syslog\" {\n grok {\n match => [ \"message\", \"<%{NONNEGINT:syslog_pri}>%{SYSLOGTIMESTAMP:syslog_timestamp} %{SYSLOGHOST:syslog_hostna... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1741,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/mail_server | 89 | [
"no_license"
] | [
{
"path": "roles/mail_server/templates/roundcube/nginx.conf",
"content": "server {\n listen 80 default;\n server_name {{ mail_server_name }};\n return 301 https://{{ mail_server_name }};\n}\n\nserver {\n listen 443 default_server;\n server_name {{ mail_server_name }} {{ inventory_hostname... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 19,
"total_bytes": 27763,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/moinmoin | 89 | [
"no_license"
] | [
{
"path": "roles/moinmoin/tasks/main.yml",
"content": "---\n#ToDo: restart moinmoin on farmconfig changes\n\n- apt: pkg={{ item }} state=present\n with_items:\n - python-moinmoin\n\n- user: name=moinmoin uid=1115\n\n# USE APACHE ROLE\n#- file: src=/etc/apache2/mods-available/'{{ item }}' dest=/etc/apach... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4103,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/mysql | 89 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\n- name: Gather Facts\n setup:\n when: ansible_distribution is not defined\n\n- name: Include Distribution version specific variables\n include_vars: \"{{ ansible_distribution }}-{{ ansible_distribution_release }}.yml\"\n\n- apt: pkg={{ item }} stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 622,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/nagios | 89 | [
"no_license"
] | [
{
"path": "roles/nagios/files/check_asterisk.sh",
"content": "#!/bin/bash\n\nsudo -u asterisk /usr/sbin/asterisk -rx 'pri show span 1' |\n grep 'Status' |\n { read status state1 state2\n if [[ $state1 == \"Up,\" && $state2 == \"Active\" ]]; then\n echo \"OK $status $state1 $state2\"\n exit 0... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 8512,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/nfs_server | 89 | [
"no_license"
] | [
{
"path": "roles/nfs_server/handlers/main.yml",
"content": "- name: restart nfs-kernel-server\n service: state=restarted name=nfs-kernel-server\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 84
},
{
"path": "roles/nfs_server/tasks/main.yml",
"content": "- a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 346,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/proftpd | 89 | [
"no_license"
] | [
{
"path": "roles/proftpd/defaults/main.yml",
"content": "---\nproftpd_port: 21\nproftpd_maxinstances: 5\n\n#set to NONE to disable\nproftpd_transferlog: /var/log/proftpd/xferlog\nproftpd_bantable: /var/log/proftpd/bantable\n\ntimezone: Europe/Moscow\n\n",
"license_type": "no_license",
"detected_lice... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 453,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/quagga | 89 | [
"no_license"
] | [
{
"path": "roles/quagga/tasks/main.yml",
"content": "---\n- apt: name=quagga\n- template: dest=/etc/quagga/ src=daemons backup=yes\n notify: restart quagga\n- copy: dest='/etc/quagga/{{ item }}.conf' mode=644 owner=quagga group=quagga content=\"\" force=no\n with_items: '{{ quagga_daemons }}'\n notify: r... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 290,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/squid | 89 | [
"no_license"
] | [
{
"path": "roles/squid/tasks/main.yml",
"content": "---\n- apt: name=squid3\n\n- template: src=squid.conf.j2 dest=/etc/squid/squid.conf group=squid mode=640 validate='squid -k check -f %s' backup=yes\n notify: restart squid\n#- lineinfile: dest=/etc/squid/passwd line=\"admin:Proxy:{{ 'admin:Proxy:litnialex... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1658,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/syslog-ng | 89 | [
"no_license"
] | [
{
"path": "roles/syslog-ng/handlers/main.yml",
"content": "---\n\n# Restarting syslog-ng\n- name: restart syslog-ng\n service:\n name: syslog-ng\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 106
},
{
"path": "roles/syslog-ng/tasks/main... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2103,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/testrole | 89 | [
"no_license"
] | [
{
"path": "roles/testrole/handlers/main.yml",
"content": "---\n- name: ttt\n debug: msg=\"TRUE NOTIFY\"\n\n- name: fff\n debug: msg=\"FALSE NOTIFY\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 84
},
{
"path": "roles/testrole/vars/testset.yml",
"content"... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 746,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/trac | 89 | [
"no_license"
] | [
{
"path": "roles/trac/tasks/main.yml",
"content": "---\n#- hosts: trac_servers\n# roles:\n# - mysql\n\n- import_tasks: mysql.yml\n when: trac_db_engine == 'mysql'\n\n- apt: state=present pkg='{{ item }}'\n with_items:\n - python-pip\n# - python-virtualenv \n - libjpeg-dev\n - zlib1g-dev\n - python-... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 8823,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/website | 89 | [
"no_license"
] | [
{
"path": "roles/website/handlers/main.yml",
"content": "- name: reload apache2\n service: name=apache2 state=reloaded\n\n- name: reload proftpd\n service: name=proftpd state=reloaded\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 126
},
{
"path": "roles/web... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1742,
"all_permissive": false
} |
ansible_role | litnialex/ansible-project | a7c71439640adfaa9c8d113de66b031e35dff7e8 | 0 | roles/workstation | 89 | [
"no_license"
] | [
{
"path": "roles/workstation/defaults/main.yml",
"content": "---\nworkstation_user: user\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 27
},
{
"path": "roles/workstation/tasks/main.yml",
"content": "---\n- name: Include Distribution version specific variabl... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 3332,
"all_permissive": false
} |
ansible_role | ptschack/pi-cluster | d682cba4bcf60243fb47862d87b0c866ea701aeb | 0 | roles/basic | 89 | [
"no_license"
] | [
{
"path": "roles/basic/tasks/main.yml",
"content": "# - name: add volian apt key\n# become: yes\n# apt_key:\n# state: present\n# url: https://deb.volian.org/volian/scar.key\n\n# - name: add repository for nala\n# become: yes\n# apt_repository:\n# repo: deb https://deb.volian.org/volian/ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 926,
"all_permissive": false
} |
ansible_role | ptschack/pi-cluster | d682cba4bcf60243fb47862d87b0c866ea701aeb | 0 | roles/x735 | 89 | [
"no_license"
] | [
{
"path": "roles/x735/tasks/main.yml",
"content": "# https://wiki.geekworm.com/X735_Software\n\n- name: install prerequisites\n package:\n name:\n - python3-smbus\n - python\n - pigpio\n - python-pigpio\n - python3-pigpio\n - git\n state: present\n become: true\n ignor... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1422,
"all_permissive": false
} |
ansible_role | ptschack/pi-cluster | d682cba4bcf60243fb47862d87b0c866ea701aeb | 0 | roles/zsh | 89 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "- name: install software\n become: yes\n package:\n name: [\"git\", \"zsh\"]\n state: present\n\n- name: zsh resource configuration test\n stat:\n path: \"/home/{{ ansible_user }}/.oh-my-zsh\"\n register: zshrc\n changed_when: false\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2056,
"all_permissive": false
} |
ansible_role | berndonline/arista-lab-provision | b29f2bfe13203cc0becd644732f7bc4b5aea98e6 | 2 | roles/hostname | 89 | [
"no_license"
] | [
{
"path": "roles/hostname/tasks/main.yml",
"content": "---\n\n- name: write hostname and domain name\n eos_system:\n hostname: '{{ inventory_hostname }}'\n domain_name: '{{ domain_name }}'\n provider: '{{ cli }}'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 162,
"all_permissive": false
} |
ansible_role | berndonline/arista-lab-provision | b29f2bfe13203cc0becd644732f7bc4b5aea98e6 | 2 | roles/interfaces | 89 | [
"no_license"
] | [
{
"path": "roles/interfaces/templates/interfaces.j2",
"content": "{% if spanning_tree is defined %}\nspanning-tree mode {{ spanning_tree.mode }}\nno spanning-tree vlan {{ spanning_tree.disabled_vlans }}\n{% endif %}\n\n{% if vlans is defined %}\n{% for vlan, value in vlans.items() %}\nvlan {{ vlan }}\n na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1855,
"all_permissive": false
} |
ansible_role | berndonline/arista-lab-provision | b29f2bfe13203cc0becd644732f7bc4b5aea98e6 | 2 | roles/ntp | 89 | [
"no_license"
] | [
{
"path": "roles/ntp/tasks/main.yml",
"content": "---\n\n- name: write ntp configuration\n eos_config:\n lines:\n - ntp server {{ item }}\n - clock timezone {{ timezone }}\n provider: '{{ cli }}'\n with_items: '{{ ntp }}'\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 182,
"all_permissive": false
} |
ansible_role | berndonline/arista-lab-provision | b29f2bfe13203cc0becd644732f7bc4b5aea98e6 | 2 | roles/routing | 89 | [
"no_license"
] | [
{
"path": "roles/routing/templates/routing.j2",
"content": "ip routing\n\n{% if bgp_fabric is defined %}\nlogging level BGP errors\nrouter bgp {{ bgp_fabric.asn }}\n router-id {{ bgp_fabric.router_id }}\n maximum-paths 4 ecmp 4\n{% for item in bgp_fabric.neighbor %}\n neighbor {{ item.address }} remot... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 573,
"all_permissive": false
} |
ansible_role | josefhammer/c3-edge | 82b0a8e8027241e3e2291a0d2d376c44e5bea365 | 2 | roles/emu-edge | 89 | [
"no_license"
] | [
{
"path": "roles/emu-edge/emu-edge-setup.yml",
"content": "---\n# NOTE: Requires emulation vars to be initialized!\n\n- name: Define local vars # without a separate file\n set_fact:\n edgeFolder: \"{{ emuFolder }}/services\"\n\n- name: Create edge folders\n file: \n path: \"{{ edgeFolder }}\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3580,
"all_permissive": false
} |
ansible_role | josefhammer/c3-edge | 82b0a8e8027241e3e2291a0d2d376c44e5bea365 | 2 | roles/ryu | 89 | [
"no_license"
] | [
{
"path": "roles/ryu/ryu-tasks.yml",
"content": "---\n- name: Install Ryu prerequisites\n apt: \n pkg:\n - gcc \n - python-dev \n - libffi-dev \n - libssl-dev \n - libxml2-dev \n - libxslt1-dev \n - zlib1g-dev\n state: present\n become: true\n\n- name: Install Ryu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 483,
"all_permissive": false
} |
ansible_role | Mounika-devop/alcatraz-setup | 629939a59f8e28d2a9e329e0654716735dbd62ae | 0 | puppet-ansible/roles/puppet-client-installation | 89 | [
"no_license"
] | [
{
"path": "puppet-ansible/roles/puppet-client-installation/tasks/main.yml",
"content": "---\n- name: Remove previous version of puppet\n apt: name=puppet,puppet-common,facter,hiera state=absent purge=yes\n\n- name: Auto remove\n shell: apt-get autoremove -y\n\n- name: apt update\n apt: update_cache=yes\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 569,
"all_permissive": false
} |
ansible_role | Mounika-devop/alcatraz-setup | 629939a59f8e28d2a9e329e0654716735dbd62ae | 0 | puppet-ansible/roles/puppet-master-installation | 89 | [
"no_license"
] | [
{
"path": "puppet-ansible/roles/puppet-master-installation/tasks/main.yml",
"content": "---\n- name: Install Puppet Master\n apt: name=puppetmaster state=present\n\n- name: Configure puppet master\n template: src=puppet.conf dest=/etc/puppet/\n notify: restart puppetmaster\n",
"license_type": "no_lic... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 320,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/app_infrastructure | 89 | [
"no_license"
] | [
{
"path": "roles/app_infrastructure/tasks/stack.yml",
"content": "---\n- name: \"monitoring: Create the shared monitoring directories\"\n file:\n path: \"{{ item }}\"\n owner: root\n group: docker\n mode: 0775\n state: directory\n loop: \"{{ extra_paths }}\"\n\n- name: \"monitoring: Copy th... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 5905,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/docker_monitoring | 89 | [
"no_license"
] | [
{
"path": "roles/docker_monitoring/tasks/main.yml",
"content": "---\n- name: \"monitoring: Build the monitoring stack\"\n include_tasks: \"build.yml\"\n when: \"inventory_hostname == swarm_master\"\n loop:\n - name: prometheus\n - name: grafana\n - name: node_exporter\n - name: cadvisor\n\n- ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 16396,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/docker_registry | 89 | [
"no_license"
] | [
{
"path": "roles/docker_registry/tasks/registry.yml",
"content": "---\n- name: \"registry: Install python dependency\"\n pip:\n name:\n - jsondiff\n - pyyaml\n\n- name: \"registry: Create data directory in {{ registry_storage_directory }}\"\n file:\n path: \"{{ registry_storage_directory }... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 6101,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/docker_swarm | 89 | [
"no_license"
] | [
{
"path": "roles/docker_swarm/tasks/labels.yml",
"content": "---\n- debug:\n var: docker_node_labels\n\n- name: \"configure: Set deployment labels\"\n docker_node:\n hostname: \"{{ item.hostname }}\"\n labels: \"{{ item.labels }}\"\n loop: \"{{ docker_node_labels }}\"\n when: \"docker_node_label... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 3625,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/gitlab_runner | 89 | [
"no_license"
] | [
{
"path": "roles/gitlab_runner/handlers/main.yml",
"content": "---\n- name: \"restart-runners\"\n service:\n name: gitlab-runner\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 86
},
{
"path": "roles/gitlab_runner/tasks/configure.yml",
... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 5235,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/install_gitlab | 89 | [
"no_license"
] | [
{
"path": "roles/install_gitlab/defaults/main.yml",
"content": "---\n# default networking values\ngitlab_interface: \"{{ ansible_default_ipv4['interface'] }}\"\ngitlab_addr: \"{{ hostvars[inventory_hostname]['ansible_' + gitlab_interface]['ipv4']['address'] }}\"\n\n# step management\ngitlab_install: \"yes\... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 3538,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/setup_local_domain_name | 89 | [
"no_license"
] | [
{
"path": "roles/setup_local_domain_name/README.md",
"content": "# `setup_local_domain_name` role\n\nAllow to access traefik the pattern `<service>.clo5.local` by leveraging `dnsmasq`.\n\n## Requirements\n\nNone\n\n## Role vars\n\n```\n# dnsmasq config path\ndnsmasq_config_file: \"/etc/dnsmasq.conf\"\ndnsma... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2461,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/setup_net_fs | 89 | [
"no_license"
] | [
{
"path": "roles/setup_net_fs/README.md",
"content": "# `setup_net_fs` role\n\nCreate a Glusterfs cluster and configure the required directories.\n\nThis role will create the following shared directories:\n- `/mnt/shared/registry`\n- `/mnt/shared/monitoring`\n- `/mnt/shared/beta`\n- `/mnt/shared/production`... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 6697,
"all_permissive": false
} |
ansible_role | tbobm/spe-clo5 | a30b442cd72157fa9f8ba105fe29f216ce09958c | 3 | roles/traefik | 89 | [
"no_license"
] | [
{
"path": "roles/traefik/templates/stack.yml.j2",
"content": "---\n# vim: set ft=yaml:\nversion: \"3.3\"\n\nnetworks:\n traefik-public:\n external: true\n monitoring-net:\n external: true\n staging-net:\n external: true\n\nservices:\n traefik:\n image: \"traefik:2.2\"\n networks:\n -... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1412,
"all_permissive": false
} |
ansible_role | jhilland0117/ECE530 | 26fab544e6ead3e6b422865362c6bd04da801f51 | 0 | ECE530_Homework4/roles/common | 89 | [
"no_license"
] | [
{
"path": "ECE530_Homework4/roles/common/defaults/main.yml",
"content": "---\n# defaults file for common\ncopy_src: 'team.txt'\ncopy_dest: '/root/'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 72
},
{
"path": "ECE530_Homework4/roles/common/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 243,
"all_permissive": false
} |
ansible_role | jhilland0117/ECE530 | 26fab544e6ead3e6b422865362c6bd04da801f51 | 0 | ECE530_Homework4/roles/packages | 89 | [
"no_license"
] | [
{
"path": "ECE530_Homework4/roles/packages/tasks/main.yml",
"content": "---\n# tasks file for packages\n- name: install net tools\n apt: name=net-tools\n become: yes\n\n- name: install python3 pip\n apt: name=python3-pip\n become: no\n\n- name: add docker gpg apt key\n apt_key:\n url: https://... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 660,
"all_permissive": false
} |
ansible_role | jhilland0117/ECE530 | 26fab544e6ead3e6b422865362c6bd04da801f51 | 0 | ECE530_Homework4/roles/primary | 89 | [
"no_license"
] | [
{
"path": "ECE530_Homework4/roles/primary/templates/replica_set.j2",
"content": "rs.initiate()\nsleep(1000)\nrs.add(\"mongodbprimary:27017\")\nsleep(1000)\nrs.add(\"mongodbsecondary:27017\")\nsleep(1000)\nprintjson(rs.stateus())\n",
"license_type": "no_license",
"detected_licenses": [],
"size_by... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2955,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/grafana | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/grafana/vars/main.yml",
"content": "---\ngrafana_package_name: \"grafana\"\ngrafana_service_name: \"grafana-server\"\ngrafana_home_directory: \"/home/ec2-user/Grafana7\"\ndashboard_src_path: \"/home/adm1/beta.json\"\ndashboard_dest_path: \"{{ grafana_home_directory }}/beta.json\"\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 860,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/jenkins | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/jenkins/vars/main.yml",
"content": "---\njenkins_repo_url: \"https://pkg.jenkins.io/redhat-stable/jenkins.repo\"\njenkins_rpm_key_url: \"https://pkg.jenkins.io/redhat/jenkins.io.key\"\njenkins_service_name: \"jenkins\"\njenkins_initial_password_file: \"/var/lib/jenkins/secrets/initi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1214,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/maven | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/maven/vars/main.yml",
"content": "---\nmaven_download_url: \"https://downloads.apache.org/maven/maven-3/3.9.4/binaries/apache-maven-3.9.4-bin.tar.gz\"\nmaven_dest_directory: \"/opt/\"\nmaven_archive_filename: \"apache-maven-3.9.4-bin.tar.gz\"\n\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 720,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/node_exporter | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/node_exporter/tasks/main.yml",
"content": "---\n - name: Télécharger Node Exporter\n get_url:\n url: \"{{ node_exporter_download_url }}\"\n dest: \"/home/ec2-user/Grafana7/{{ node_exporter_archive_filename }}\"\n tags:\n - download\n\n - name: In... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1262,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/openjdk11-backend | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/openjdk11-backend/handlers/main.yml",
"content": "---\n# handlers file for roles/openjdk11\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 40
},
{
"path": "ansible/roles/openjdk11-backend/vars/main.yml",
"content": "---\njava_package_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 237,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/openjdk11-frontend | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/openjdk11-frontend/defaults/main.yml",
"content": "---\n# defaults file for roles/openjdk11-frontend\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 49
},
{
"path": "ansible/roles/openjdk11-frontend/vars/main.yml",
"content": "---\nja... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 523,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/prometheus | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/prometheus/vars/main.yml",
"content": "---\nprometheus_archive_src: \"/home/ec2-user/Grafana7/prometheus-2.11.2.linux-amd64.tar.gz\"\nprometheus_extraction_directory: \"/tmp\"\nprometheus_service_name: \"prometheus.service\"\nsystemd_service_directory: \"/etc/systemd/system/\"\n\n",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 868,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/pushgateway | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/pushgateway/tasks/main.yml",
"content": "---\n - name: Télécharger Pushgateway\n get_url:\n url: \"{{ pushgateway_download_url }}\"\n dest: \"/home/ec2-user/Grafana7/\"\n tags:\n - download\n\n - name: Installation du Pushgateway\n become: y... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1213,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/terraform | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/terraform/tasks/main.yml",
"content": "---\n\n - name: Télécharger Terraform\n get_url:\n url: \"{{ terraform_download_url }}\"\n dest: \"/tmp/terraform_{{ terraform_version }}_linux_amd64.zip\"\n \n - name: Décompresser Terraform\n unarchive:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 855,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | ansible/roles/tomcat | 92 | [
"no_license"
] | [
{
"path": "ansible/roles/tomcat/tasks/main.yml",
"content": "---\n - name: Add group \"{{ tomcat_group_name }}\"\n group:\n name: \"{{ tomcat_group_name }}\"\n\n - name: Add user \"{{ tomcat_user_name }}\"\n user:\n name: \"{{ tomcat_user_name }}\"\n group: \"{{ tomcat_g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2088,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | old/ansible/groupe_3/roles/grafana | 92 | [
"no_license"
] | [
{
"path": "old/ansible/groupe_3/roles/grafana/vars/main.yml",
"content": "---\n# vars file for roles/grafana\n\nchemin_source: /home/adm1/ansible/beta.json\ngrafana_url: ec2-15-237-92-135.eu-west-3.compute.amazonaws.com\ngrafana_user: admin\ngrafana_password: <PASSWORD>\ngrafana_dashboard_path: /home/ec2-us... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 999,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | old/ansible/groupe_3/roles/node_exporter | 92 | [
"no_license"
] | [
{
"path": "old/ansible/groupe_3/roles/node_exporter/tasks/main.yml",
"content": "---\n- name: Installation de Node Exporter\n become: yes\n unarchive:\n src: \"{{ node_exporter_download_url }}\"\n dest: \"/tmp\"\n remote_src: true\n tags:\n - install\n- name: Démarrage du service Node Exporte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 472,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | old/ansible/groupe_3/roles/prometheus | 92 | [
"no_license"
] | [
{
"path": "old/ansible/groupe_3/roles/prometheus/tasks/main.yml",
"content": "---\n# tasks file for roles/prometheus\n\n- name: Installation de Prometheus\n become: yes\n unarchive:\n src: \"{{ prometheus_download_url }}\"\n dest: \"/tmp\"\n remote_src: true\n tags:\n - install\n\n- name: Dém... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 487,
"all_permissive": false
} |
ansible_role | goldentechnologyrec/golden-war | a62f4b464bfc80d80c3ad0e5212ae1303c7a1b8e | 0 | old/ansible/groupe_3/roles/pushgateway | 92 | [
"no_license"
] | [
{
"path": "old/ansible/groupe_3/roles/pushgateway/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/pushgateway\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "old/ansible/groupe_3/roles/pushgateway/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 570,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/X11 | 92 | [
"no_license"
] | [
{
"path": "roles/X11/tasks/main.yml",
"content": "# Load distro specific variables\n- include_vars: \"{{ ansible_os_family }}.yml\"\n when: ansible_system == \"Linux\"\n\n- name: Linux setup\n block:\n - import_tasks: packages/install_packages.yml\n - import_tasks: packages/install_libxft.yml\n -... | {
"task_files": 11,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 15,
"total_bytes": 7829,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/base | 92 | [
"no_license"
] | [
{
"path": "roles/base/tasks/packages/install_gitflow.yml",
"content": "- name: packages | gitflow\n block:\n - name: packages | gitflow | install (Archlinux)\n become_user: \"{{ user }}\"\n shell: \"yes | {{ aur_helper_name }} -S --removemake gitflow-cjs\"\n when: ansible_distribution in... | {
"task_files": 29,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 35,
"total_bytes": 36827,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/cups | 92 | [
"no_license"
] | [
{
"path": "roles/cups/tasks/main.yml",
"content": "# Print server\n- name: CUPS | Archlinux\n become: true\n block:\n - name: CUPS | install needed packages\n pacman:\n name:\n - cups\n - ghostscript\n - system-config-printer\n state: latest\n\n - name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 787,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/dev | 92 | [
"no_license"
] | [
{
"path": "roles/dev/tasks/packages/install_docker.yml",
"content": "- name: packages | docker\n block:\n - name: packages | install required packages (Linux)\n become: true\n package:\n name:\n - docker\n - docker-compose\n state: latest\n when: ansible_di... | {
"task_files": 8,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 12,
"total_bytes": 9683,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/gnome | 92 | [
"no_license"
] | [
{
"path": "roles/gnome/tasks/packages/debloat.yml",
"content": "- name: packages | debloat Gnome\n become: true\n block:\n - name: packages | debloat Gnome | remove unwanted packages\n apt:\n name:\n - baobab\n - eog\n - geary\n - popsicle\n - po... | {
"task_files": 14,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 14,
"total_bytes": 20892,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/mac | 92 | [
"no_license"
] | [
{
"path": "roles/mac/tasks/system_setup/dotfiles.yml",
"content": "- name: system setup | dotfiles | MacOS\n block:\n - name: system setup | dotfiles | Clone repo\n git:\n bare: yes\n repo: https://github.com/dixiedream/dotfiles.git\n dest: \"$HOME/.cfg\"\n\n - name: system ... | {
"task_files": 25,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 26,
"total_bytes": 38779,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/pro_audio | 92 | [
"no_license"
] | [
{
"path": "roles/pro_audio/tasks/main.yml",
"content": "---\n- name: Pro audio\n become: true\n block:\n - name: Pro audio | Install required packages\n package:\n name:\n - pipewire-jack\n - reaper\n - reapack\n\n - name: Pro audio | Add environment variable\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 432,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/samba | 92 | [
"no_license"
] | [
{
"path": "roles/samba/tasks/main.yml",
"content": "# Samba share client\n- name: samba\n become: true\n block:\n - name: samba | install client\n package:\n name:\n - smbclient\n state: latest\n\n - name: samba | create etc directory\n file:\n path: /etc/samb... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1808,
"all_permissive": false
} |
ansible_role | dixiedream/ansible | 64d54f73c5d66c391c14ecd54cd5d8756d8f7c34 | 1 | roles/wayland | 92 | [
"no_license"
] | [
{
"path": "roles/wayland/tasks/system_setup/kanshi.yml",
"content": "# We're unable to know the name of the different outputs\n# for different machines so we're basically creating\n# a template... [AL20231128]\n---\n- name: system setup | kanshi\n become_user: \"{{ user }}\"\n when: wayland_install_type i... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2691,
"all_permissive": false
} |
ansible_role | seyefalilou/Ansible | b07bc38137e4f45028a583ea3e7b8e51f3edde38 | 0 | galaxy/roles/monrole | 92 | [
"no_license"
] | [
{
"path": "galaxy/roles/monrole/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - monrole",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "galaxy/roles/monrole/handlers/main.yml",
"content": "---\n# handl... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 523,
"all_permissive": false
} |
ansible_role | krsvt/iac6 | 9469884a52eca1d6351adc9e6359be0e1cad9835 | 0 | roles/grafana | 92 | [
"no_license"
] | [
{
"path": "roles/grafana/templates/grafana.ini.j2",
"content": "[server]\nhttp_port = {{ grafana_http_port }}\nroot_url = {{ grafana_root_url }}\n\n[security]\ndisable_sign_up = {{ grafana_disable_sign_up }}\n\n[auth.anonymous]\nenabled = {{ grafana_auth_anonymous }}\n\n[users]\ndefault_admin_username = {{ ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 5392,
"all_permissive": false
} |
ansible_role | krsvt/iac6 | 9469884a52eca1d6351adc9e6359be0e1cad9835 | 0 | roles/loki | 92 | [
"no_license"
] | [
{
"path": "roles/loki/vars/main.yml",
"content": "---\n# vars file for loki\n_loki__apt_keypath: /usr/share/keyrings/grafana.asc",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/loki/meta/main.yml",
"content": "galaxy_info:\n description:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1878,
"all_permissive": false
} |
ansible_role | krsvt/iac6 | 9469884a52eca1d6351adc9e6359be0e1cad9835 | 0 | roles/prometheus | 92 | [
"no_license"
] | [
{
"path": "roles/prometheus/molecule/default/molecule.yml",
"content": "---\ndriver:\n name: vagrant\n provider:\n name: virtualbox\n\ndependency:\n name: galaxy\n\nplatforms:\n - name: srv1\n box: ubuntu/focal64\n groups:\n - app\n\n - name: srv2\n box: ubuntu/focal64\n groups:\n ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 5118,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-activation-keys | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-activation-keys/vars/main.yml",
"content": "---\n# vars file for sat6-activation-keys",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 40
},
{
"path": "roles/sat6-activation-keys/handlers/main.yml",
"content": "---\n# handlers file for sat6... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 731,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-compute-resources | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-compute-resources/vars/main.yml",
"content": "---\n# vars file for sat6-compute-resources",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/sat6-compute-resources/handlers/main.yml",
"content": "---\n# handlers file fo... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 728,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-content-views | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-content-views/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - sat6-content-views",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/sat6-content-views/handlers/main.yml",
"cont... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1200,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-content-views-publish-and-promote | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-content-views-publish-and-promote/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - sat6-content-views-publish-and-promote",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 96
},
{
"path": "roles/sat6-con... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 744,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-default-organization | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-default-organization/tasks/main.yml",
"content": "---\n\n- name: get organization id\n shell: \"hammer --csv organization list | grep '{{ organization }}' | awk -F ',' '{print $1}'\"\n register: organization_id\n changed_when: false\n delegate_to: \"{{ 'localhost' if hammer_local e... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 625,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-domains | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-domains/handlers/main.yml",
"content": "---\n# handlers file for sat6-domains",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 36
},
{
"path": "roles/sat6-domains/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 517,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-host-groups | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-host-groups/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - sat6-host-groups",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
},
{
"path": "roles/sat6-host-groups/tasks/main.yml",
"content": "--... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1890,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-lifecycle-environments | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-lifecycle-environments/tasks/main.yml",
"content": "---\n\n- name: ensure lifecycle environments exist\n katello_lifecycle_environment:\n username: \"{{ username }}\"\n password: \"{{ <PASSWORD> }}\"\n server_url: \"https://{{ ansible_nodename }}\"\n organization: \"{{ org... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 664,
"all_permissive": false
} |
ansible_role | ture-karlsson/sat6-deployer | 451a8d4a7125aa0bf888f1f31c9cc509daecd53f | 6 | roles/sat6-locations | 92 | [
"no_license"
] | [
{
"path": "roles/sat6-locations/handlers/main.yml",
"content": "---\n# handlers file for sat6-locations",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 38
},
{
"path": "roles/sat6-locations/tasks/main.yml",
"content": "---\n\n- name: ensure locations exists\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 517,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.