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 | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/app-nodejs-npm | 6,876 | [
"no_license"
] | [
{
"path": "roles/app-nodejs-npm/tasks/main.yml",
"content": "---\n- name: npm install\n npm: path={{app_dir}}/{{application.name}}/releases/pending\n state=present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 107
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 107,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/app-rails-base | 6,876 | [
"no_license"
] | [
{
"path": "roles/app-rails-base/tasks/main.yml",
"content": "---\n- name: install common packages\n action: apt name={{item}} state=installed\n with_items:\n - build-essential\n - ruby1.9.3\n - libpq-dev\n\n- name: install common gems\n action: gem name={{item}} state=present user_install=no\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 263,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/app-rails-bundle | 6,876 | [
"no_license"
] | [
{
"path": "roles/app-rails-bundle/tasks/main.yml",
"content": "---\n- name: bundle install\n command: >\n bundle install --without development test --deployment --path {{ app_dir }}/{{ application.name }}/shared/bundle\n chdir={{ app_dir }}/{{ application.name }}/releases/pending\n environment:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 329,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/app-rails-rake | 6,876 | [
"no_license"
] | [
{
"path": "roles/app-rails-rake/tasks/main.yml",
"content": "---\n- name: rake\n command: >\n bundle exec rake {{ item }}\n chdir={{ app_dir }}/{{ application.name }}/releases/pending\n with_items: commands\n environment:\n RAILS_ENV: production\n",
"license_type": "no_license",
"detecte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 190,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/app-rails-unicorn | 6,876 | [
"no_license"
] | [
{
"path": "roles/app-rails-unicorn/tasks/main.yml",
"content": "---\n- name: install unicorn config\n template:\n src=unicorn.rb.j2\n dest={{ app_dir }}/{{ application.name }}/shared/unicorn.rb\n mode=0644\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 147
}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 147,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/common | 6,876 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: update and upgrade packages\n apt: update_cache=yes upgrade=safe cache_valid_time=604800\n\n- name: install common packages\n action: apt name={{item}} state=installed\n with_items:\n - vim-nox\n - screen\n\n- name: allow ssh\n comm... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 318,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/firewall | 6,876 | [
"no_license"
] | [
{
"path": "roles/firewall/tasks/main.yml",
"content": "---\n- name: allow connections to port\n command: ufw allow {{ item.port }}\n with_items: rules\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 95
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 95,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/firewall-group | 6,876 | [
"no_license"
] | [
{
"path": "roles/firewall-group/tasks/main.yml",
"content": "---\n- name: allow connections from group\n command: ufw allow from {{hostvars[item].ansible_default_ipv4.address}} to any port {{ port }}\n with_items: groups[group]\n",
"license_type": "no_license",
"detected_licenses": [],
"size_b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 166,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/nginx-base | 6,876 | [
"no_license"
] | [
{
"path": "roles/nginx-base/tasks/main.yml",
"content": "---\n- name: install nginx\n apt: name=nginx-extras\n\n- name: disable default server\n file: path=/etc/nginx/sites-enabled/default state=absent\n\n- name: start nginx server\n service: name=nginx state=running\n",
"license_type": "no_license",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 206,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/postgres-server | 6,876 | [
"no_license"
] | [
{
"path": "roles/postgres-server/templates/postgresql.conf.autovacuum.j2",
"content": "#------------------------------------------------------------------------------\n# AUTOVACUUM PARAMETERS\n#------------------------------------------------------------------------------\n\n#autovacuum = on\t\t\t# Enable a... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 23881,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/postgres-server-host | 6,876 | [
"no_license"
] | [
{
"path": "roles/postgres-server-host/tasks/main.yml",
"content": "---\n- name: create the database user\n postgresql_user:\n name={{ item.key }}\n role_attr_flags=NOSUPERUSER,NOCREATEDB,NOCREATEROLE,NOINHERIT,LOGIN\n password={{ item.value.password }}\n sudo: yes\n sudo_user: \"{{ postgres_serv... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 974,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/redis | 6,876 | [
"no_license"
] | [
{
"path": "roles/redis/tasks/main.yml",
"content": "---\n- name: install redis ppa\n apt_repository: repo={{redis_apt_repository}}\n when: redis_apt_repository\n\n- name: install redis-server\n apt: name=redis-server\n\n- name: configure redis-server\n template:\n src=redis.conf.j2\n dest=/etc/red... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 374,
"all_permissive": false
} |
ansible_role | boz/ansible-deploy | 308b2680f62fdc1a89616ddf28db3bfb6d1b91cd | 0 | roles/rsyslog | 6,876 | [
"no_license"
] | [
{
"path": "roles/rsyslog/templates/rsyslog.conf.j2",
"content": "# /etc/rsyslog.conf Configuration file for rsyslog.\n#\n# For more information see\n# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html\n#\n# Default logging rules can be found in /etc/rsyslog.d... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2081,
"all_permissive": false
} |
ansible_role | unseen-academicals/TheDisOrganiser | 55b8d9b597625cc94bab73407eee635ce22ffd56 | 0 | roles/pro_build | 6,876 | [
"no_license"
] | [
{
"path": "roles/pro_build/tasks/main.yml",
"content": "---\n- name: Build Security Group\n block:\n\n - name: Check for existing security group\n amazon.aws.ec2_group_info:\n region: \"{{ region }}\"\n filters:\n group-name: \"{{ security_group_name }}\"\n register: sg_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3297,
"all_permissive": false
} |
ansible_role | unseen-academicals/TheDisOrganiser | 55b8d9b597625cc94bab73407eee635ce22ffd56 | 0 | roles/pro_gooseberry | 6,876 | [
"no_license"
] | [
{
"path": "roles/pro_gooseberry/templates/motd.j2",
"content": "{{ lookup('pipe', 'figlet \"Bingily Bingily Beep!\"') }}\n\n{{ lookup('pipe', 'figlet \"+++ Out of Cheese Error. Redo From Start. +++\"') }}\n\n-GNU TP",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 143
},
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1089,
"all_permissive": false
} |
ansible_role | dit-x/us-wildfire-test | 50503f7b931b9d60312b231e755a3a0c226875d4 | 0 | .circleci/ansible/roles/python_anywhere | 6,876 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/python_anywhere/tasks/main.yml",
"content": "---\n\n - name: cd into repo\n shell: |\n cd /home/fiverock/repos/src \n echo $PWD\n register: print_result\n\n - name: print message\n debug:\n msg: \"{{ print_result.stdout_lines }}\"\n\n\n\n\n ",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 206,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/base | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/base/defaults/main.yml",
"content": "---\nepel: true\nno_selinux: true\nno_firewalld: true\ndocker_latest: false\nmesos: false",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 84
},
{
"path": "labs/roles/base/vars/mesos.yml",
"content": "--... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2059,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/etcd | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/etcd/handlers/main.yml",
"content": "---\n- name: restart etcd\n become: yes\n service: name=etcd state=restarted",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 75
},
{
"path": "labs/roles/etcd/tasks/main.yml",
"content": "---\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 909,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/flannel | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/flannel/vars/main.yml",
"content": "---\nflannel_pkgs:\n - flannel",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "labs/roles/flannel/handlers/main.yml",
"content": "---\n- name: restart flannel\n become: yes\n service:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 784,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/kubernetes-master | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/kubernetes-master/vars/main.yml",
"content": "---\nkube_master_pkgs:\n - kubernetes\n - flannel\n\nkube_master_services:\n - kube-apiserver\n - kube-controller-manager\n - kube-scheduler",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 137
},
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 737,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/kubernetes-minion | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/kubernetes-minion/vars/main.yml",
"content": "---\nkube_minion_pkgs:\n - kubernetes-node\n\nkube_minion_services:\n - kube-proxy\n - kubelet\n - docker\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 103
},
{
"path": "labs/roles/kubernet... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 629,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/mesos-master | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/mesos-master/vars/main.yml",
"content": "---\nmesos_pkgs:\n - mesos\n - marathon\n\nmesos_master_services:\n - mesos-master\n - marathon",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
},
{
"path": "labs/roles/mesos-master/tasks/main.ym... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | mjbright/LinuxConEU-ContainerOrchestration | 6cdaeebbee99c6dea38a1db9ca5dedc3b00441c3 | 6 | labs/roles/zookeeper | 6,876 | [
"no_license"
] | [
{
"path": "labs/roles/zookeeper/templates/myid.j2",
"content": "{{ range(1, 255) | random }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "labs/roles/zookeeper/tasks/main.yml",
"content": "---\n- name: install zookeeper\n become: yes\n yu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 430,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/dnscrypt-proxy | 6,876 | [
"no_license"
] | [
{
"path": "roles/dnscrypt-proxy/defaults/main.yaml",
"content": "---\n\ndnscrypt_resolvers: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "roles/dnscrypt-proxy/handlers/main.yaml",
"content": "---\n\n- name: start dnscrypt-proxy\n servic... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1464,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/flood | 6,876 | [
"no_license"
] | [
{
"path": "roles/flood/defaults/main.yaml",
"content": "---\n\nflood_jwt_secret: null\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "roles/flood/templates/flood.sh",
"content": "#!/bin/sh\n\n# PROVIDE: flood\n# REQUIRE: DAEMON cleanvar\n# KE... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 5277,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/jails_setup | 6,876 | [
"no_license"
] | [
{
"path": "roles/jails_setup/tasks/setup.yaml",
"content": "---\n\n- name: initialize pkg\n command: iocage exec {{ jail_name }} env ASSUME_ALWAYS_YES=true pkg update\n\n- name: enable sshd\n lineinfile:\n dest: \"{{ jails_path }}/{{ jail_name }}/root/etc/defaults/rc.conf\"\n line: sshd_enable=\"YES... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2082,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/mdns | 6,876 | [
"no_license"
] | [
{
"path": "roles/mdns/handlers/main.yaml",
"content": "---\n\n- name: start avahi\n service:\n name: avahi-daemon\n state: started\n pattern: avahi-daemon\n\n- name: restart avahi\n service:\n name: avahi-daemon\n state: restarted\n pattern: avahi-daemon\n\n- name: start dbus\n service:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 954,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/media_group | 6,876 | [
"no_license"
] | [
{
"path": "roles/media_group/tasks/main.yaml",
"content": "---\n\n- name: create the media group\n group:\n name: media\n gid: 8675309\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 97,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/nginx | 6,876 | [
"no_license"
] | [
{
"path": "roles/nginx/templates/nginx.conf",
"content": "include mods-enabled/*.load;\n\nuser www;\nworker_processes 1;\npid /var/run/nginx.pid;\n\nevents {\n worker_connections 1024;\n multi_accept on;\n}\n\nhttp {\n sendfile on;\n tcp_nopush on;\n tcp_nodelay on;\n keepalive_timeout 65;\n types_ha... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1781,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/php | 6,876 | [
"no_license"
] | [
{
"path": "roles/php/handlers/main.yaml",
"content": "---\n\n- name: start php-fpm\n service:\n name: php-fpm\n state: started\n\n- name: restart php-fpm\n service:\n name: php-fpm\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 150
},
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 602,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/plex | 6,876 | [
"no_license"
] | [
{
"path": "roles/plex/tasks/hello_hue.yaml",
"content": "---\n\n- name: download hello hue\n get_url:\n url: https://github.com/ledge74/HelloHue.bundle/archive/37ea90faf2fdf8d3badddfb5466173329e8e6122.tar.gz\n dest: /usr/local/libdata/ansible/downloads/hello-hue-37ea90fa.tar.gz\n sha256sum: 00ec7a... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4130,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/pre_setup | 6,876 | [
"no_license"
] | [
{
"path": "roles/pre_setup/tasks/main.yaml",
"content": "---\n\n- name: create ansible dirs\n file:\n path: /usr/local/libdata/{{ item }}\n state: directory\n mode: 0755\n owner: root\n group: wheel\n loop:\n - ansible\n - ansible/downloads\n - ansible/archives\n become: yes\n",
"li... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 227,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/radarr | 6,876 | [
"no_license"
] | [
{
"path": "roles/radarr/tasks/main.yaml",
"content": "---\n\n- name: install radarr\n pkgng:\n name: radarr\n state: present\n\n- name: add the radarr user to the media group\n user:\n name: radarr\n groups: media\n append: yes\n notify: restart radarr\n\n- name: allow radarr to auto-updat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 618,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/reverse_proxy | 6,876 | [
"no_license"
] | [
{
"path": "roles/reverse_proxy/tasks/main.yaml",
"content": "---\n\n- name: check if reverse_proxy_domain is defined\n fail:\n msg: \"reverse_proxy_domain is undefined. Set it in host_vars/reverse-proxy@freenas.local.yaml\"\n when: reverse_proxy_domain is not defined\n\n- name: create reverse-proxy con... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 10,
"total_bytes": 9953,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/rtorrent | 6,876 | [
"no_license"
] | [
{
"path": "roles/rtorrent/meta/main.yaml",
"content": "---\n\ndependencies:\n- role: rutorrent\n when: rtorrent_frontend == 'rutorrent'\n- role: flood\n when: rtorrent_frontend == 'flood'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 129
},
{
"path": "roles/r... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 3241,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/rutorrent | 6,876 | [
"no_license"
] | [
{
"path": "roles/rutorrent/tasks/main.yaml",
"content": "---\n\n- name: install rutorrent dependencies\n pkgng:\n name:\n - ffmpeg\n - mediainfo\n - unrar\n - sox\n state: present\n\n- name: create rutorrent user\n user:\n name: rutorrent\n groups:\n - media\n - rtorrent\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3074,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/sabnzbd | 6,876 | [
"no_license"
] | [
{
"path": "roles/sabnzbd/handlers/main.yaml",
"content": "---\n\n- name: start sabnzbd\n service:\n name: sabnzbd\n state: started\n\n- name: restart sabnzbd\n service:\n name: sabnzbd\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 150
... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2114,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/sonarr | 6,876 | [
"no_license"
] | [
{
"path": "roles/sonarr/tasks/main.yaml",
"content": "---\n\n- name: install sonarr\n pkgng:\n name: sonarr\n state: present\n\n- name: add the sonarr user to the media group\n user:\n name: sonarr\n groups: media\n append: yes\n notify: restart sonarr\n\n- name: allow sonarr to auto-updat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 618,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/stats | 6,876 | [
"no_license"
] | [
{
"path": "roles/stats/tasks/main.yaml",
"content": "---\n\n- name: install grafana\n pkgng:\n name: grafana5\n state: present\n\n- name: install influxdb\n pkgng:\n name: influxdb\n state: present\n\n- name: install telegraf\n pkgng:\n name: telegraf\n state: present\n\n- name: install... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2362,
"all_permissive": false
} |
ansible_role | andsens/freenas-jailconfig | 60d09a7a4921ee6c132051b1f3568cee756a8a7d | 25 | roles/user_customization | 6,876 | [
"no_license"
] | [
{
"path": "roles/user_customization/defaults/main.yaml",
"content": "---\n\nroot_shell: /bin/sh\nuser_packages: []\ngit_repos: []\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 57
},
{
"path": "roles/user_customization/tasks/main.yaml",
"content": "---\n\n- ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 899,
"all_permissive": false
} |
ansible_role | Contrast-Security-OSS/eop-examples | 6529bb0e0b4461a3b0e4f76929d086b79361eec7 | 1 | roles/eop | 6,876 | [
"no_license"
] | [
{
"path": "roles/eop/defaults/main.yml",
"content": "---\n# defaults file for eop\ncontrast_license: ~/Downloads/contrast-12-31-2017.lic\ncontrast_installer_local: \"~/Downloads/Contrast-3.4.0.517.sh\"\ncontrast_installer_s3: False\neop_version: 3.4.0\nrun_install: True\nwebgoat: False\napache_reverse: Fals... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 16,
"total_bytes": 11586,
"all_permissive": false
} |
ansible_role | Contrast-Security-OSS/eop-examples | 6529bb0e0b4461a3b0e4f76929d086b79361eec7 | 1 | roles/jumpbox | 6,876 | [
"no_license"
] | [
{
"path": "roles/jumpbox/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - jumpbox",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "roles/jumpbox/vars/main.yml",
"content": "---\n# vars file for jumpbox",... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 2916,
"all_permissive": false
} |
ansible_role | Contrast-Security-OSS/eop-examples | 6529bb0e0b4461a3b0e4f76929d086b79361eec7 | 1 | roles/mysql | 6,876 | [
"no_license"
] | [
{
"path": "roles/mysql/vars/main.yml",
"content": "---\n# vars file for ansible-role-mysql-server\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 46
},
{
"path": "roles/mysql/handlers/main.yml",
"content": "---\n# handlers file for ansible-role-mysql-server\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 3744,
"all_permissive": false
} |
ansible_role | Ritesh007/ansible_tutorial | 128abbd07b5d062d17b4840ffce96c98be91432a | 0 | roles/webservers | 6,876 | [
"no_license"
] | [
{
"path": "roles/webservers/tasks/main.yml",
"content": "---\n- name: Install nginx\n apt:\n name: \"{{ package_name }}\"\n state: latest\n become: yes\n notify:\n - restart\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 121
},
{
"path": "roles/web... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 211,
"all_permissive": false
} |
ansible_role | drew-young/requestor | 8650a7a2cfa727240ffcd5cb6f08cc059cd94b46 | 2 | ansible/roles/requestor | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/requestor/files/requestor.service.pf",
"content": "#!/bin/sh\n#\n# PROVIDE: ipfw_netblock\n# REQUIRE: NETWORK FIREWALL\n# KEYWORD: <PASSWORD>\n\n. /etc/rc.subr\n\nname=\"ipfw_netblock\"\nrcvar=\"ipfw_netblock_enable\"\n\n# The command to start the service\ncommand=\"/usr/bin/ibv_ipf... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 7848,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/app_store | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/app_store/tasks/main.yaml",
"content": "---\n- name: Install {{ item.name }} desktop app\n shell: mas install {{ item.id }}\n args:\n creates: \"/Applications/{{ item.name }}/Contents/Info.plist\"\n with_flattened:\n - \"{{ d_appstore }}\"\n - \"{{ appstore }}\"\n",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 335,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/browser | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/browser/tasks/main.yaml",
"content": "---\n- name: Set firefox to default browser\n shell: open \"/Applications/Firefox.app\" --args -setDefaultBrowser\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 111
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 111,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/certificates | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/certificates/tasks/main.yaml",
"content": "---\n- name: Get list of CA root certs local\n find:\n paths: \"{{ playbook_dir }}/certificates\"\n delegate_to: 127.0.0.1\n register: local_cert_files\n\n- name:\n command: \"security add-trusted-cert -d -r trustRoot -k /Library/Key... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 325,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/homebrew | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/homebrew/vars/main.yaml",
"content": "d_homebrew_tap:\n - \"Yleisradio/terraforms\"\n\nd_homebrew_cask:\n - name: \"iterm2\"\n state: \"present\"\n - name: \"macpass\"\n state: \"present\"\n - name: \"keka\"\n state: \"present\"\n\nd_homebrew:\n - name: \"packer\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1598,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/npm | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/npm/vars/main.yaml",
"content": "d_npm:\n - name: \"livedown\"\n state: \"latest\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 48
},
{
"path": "ansible/roles/npm/tasks/main.yaml",
"content": "---\n- name: Install {{ item.name ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 249,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/python | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/python/vars/main.yaml",
"content": "d_pip:\n - name: \"ansible\"\n state: \"present\"\n - name: \"psycopg2\"\n state: \"present\"\n - name: \"virtualenv\"\n state: \"present\"\n - name: \"boto\"\n state: \"present\"\n - name: \"requests\"\n state: \"present\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 729,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/shell | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/shell/templates/dot_zshrc.j2",
"content": "# Path to your oh-my-zsh installation.\nexport ZSH=/Users/dstirling/.oh-my-zsh\n\n# Set name of the theme to load.\n# Look in ~/.oh-my-zsh/themes/\n# Optionally, if you set this to \"random\", it'll load a random theme each\n# time that oh-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4973,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/ssh | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/ssh/tasks/main.yaml",
"content": "---\n- name: Create .ssh directory\n file: \n path: \"{{ ansible_env.HOME }}/.ssh\"\n state: directory\n mode: 0700\n# TODO: encrypt and deploy\n- name: Deploy SSH keys\n copy:\n src: \"files/{{ item }}\"\n dest: \"{{ ansible_env.HO... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 332,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/utils | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/utils/tasks/main.yaml",
"content": "---\n- name: Install homebrew\n shell: /usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\n args:\n creates: /usr/local/bin/brew\n\n- name: Install Xcode CLT\n shell: xcode-select --install\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 306,
"all_permissive": false
} |
ansible_role | dalethestirling/mac_build | bf801e629e10307d22321d2c8c053131eb83bdac | 0 | ansible/roles/vim | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/vim/tasks/main.yaml",
"content": "---\n- name: setup .vim directories\n file:\n path: \"{{ ansible_env.HOME }}/.vim/autoload\"\n state: directory\n mode: 0755 \n- name: Insatll vim-plug\n get_url:\n url: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1307,
"all_permissive": false
} |
ansible_role | kzyo/setup-centos | 59fa2ee99c057fc4a116aa3068aef2eda3bda496 | 0 | roles/git | 6,936 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "- block:\n\n - name: set user.name\n git_config: name=user.name scope=global value=\"{{ name }}\"\n sudo: no\n\n - name: set user.email\n git_config: name=user.email scope=global value=\"{{ email }}\"\n sudo: no\n\n tags:\n - git\n",
"l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 233,
"all_permissive": false
} |
ansible_role | kzyo/setup-centos | 59fa2ee99c057fc4a116aa3068aef2eda3bda496 | 0 | roles/yum | 6,936 | [
"no_license"
] | [
{
"path": "roles/yum/tasks/main.yml",
"content": "- block:\n\n# - name: yum update\n# yum:\n# name: '*'\n# state: latest\n#\n - name: yum package install\n yum:\n name: \"{{ item.name }}\"\n state: \"{{ item.state | default('present') }}\"\n with_items: \"{{ packages }}\"\n\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 478,
"all_permissive": false
} |
ansible_role | akkerman/vagrant-geoserver | e31f2a1f98f09e7e6eb5c84a8b54c37775d5fc76 | 2 | provisioning/roles/common | 6,936 | [
"no_license"
] | [
{
"path": "provisioning/roles/common/tasks/main.yml",
"content": "---\n# file: roles/common/tasks/main.yml\n\n- name: ensure squid-deb-proxy-client is installed\n apt: pkg=squid-deb-proxy-client state=installed\n\n- name: ensure unzip is installed\n apt: pkg=unzip state=installed\n\n- name: generate local... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 293,
"all_permissive": false
} |
ansible_role | akkerman/vagrant-geoserver | e31f2a1f98f09e7e6eb5c84a8b54c37775d5fc76 | 2 | provisioning/roles/db | 6,936 | [
"no_license"
] | [
{
"path": "provisioning/roles/db/tasks/main.yml",
"content": "---\n# file: roles/db/tasks/main.yml\n\n- name: install posgresql\n action: apt pkg={{item}} state=installed\n with_items:\n - postgresql-9.3 \n - postgresql-contrib-9.3\n\n- name: install dependencies for posgresql_user module\n action:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 613,
"all_permissive": false
} |
ansible_role | akkerman/vagrant-geoserver | e31f2a1f98f09e7e6eb5c84a8b54c37775d5fc76 | 2 | provisioning/roles/geoserver | 6,936 | [
"no_license"
] | [
{
"path": "provisioning/roles/geoserver/tasks/download_install.yml",
"content": "---\n# file: roles/geoserver/tasks/download_install.yml\n- name: download GeoServer\n get_url: url=http://sourceforge.net/projects/geoserver/files/GeoServer/2.4.0/geoserver-2.4.0-war.zip dest=/home/vagrant/geoserver-2.4.0-war.... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1078,
"all_permissive": false
} |
ansible_role | akkerman/vagrant-geoserver | e31f2a1f98f09e7e6eb5c84a8b54c37775d5fc76 | 2 | provisioning/roles/web | 6,936 | [
"no_license"
] | [
{
"path": "provisioning/roles/web/tasks/main.yml",
"content": "---\n# file: roles/web/tasks/main.yml\n\n- name: ensure apache is installed\n apt: pkg=apache2 state=installed\n\n- name: ensure apache2 is running\n service: name=apache2 state=started\n\n- name: add oracle-java ppa\n apt_repository: repo=pp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1325,
"all_permissive": false
} |
ansible_role | rahmatov/haproxy-dynamic-nginx-containers | 994e4f1d17278325b17f4f1bd96ec8a8595a2159 | 1 | ansible/roles/add_backend_server_to_haproxy | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/add_backend_server_to_haproxy/tasks/main.yml",
"content": "---\n\n- name: process haproxy.cfg template\n template: src=templates/haproxy.cfg.j2 dest=/etc/haproxy/haproxy.cfg\n sudo: yes\n\n- name: reload haproxy\n command: service haproxy reload\n sudo: yes\n",
"license_type... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 195,
"all_permissive": false
} |
ansible_role | rahmatov/haproxy-dynamic-nginx-containers | 994e4f1d17278325b17f4f1bd96ec8a8595a2159 | 1 | ansible/roles/haproxyinstall | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/haproxyinstall/tasks/main.yml",
"content": "---\n\n- name: install haproxy\n apt: pkg=haproxy update-cache=yes\n\n- name: update default haproxy\n template: src=templates/default_haproxy dest=/etc/default/haproxy\n sudo: yes\n\n- name: process haproxy.cfg template\n template: sr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 366,
"all_permissive": false
} |
ansible_role | rahmatov/haproxy-dynamic-nginx-containers | 994e4f1d17278325b17f4f1bd96ec8a8595a2159 | 1 | ansible/roles/run_nginx | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/run_nginx/tasks/main.yml",
"content": "---\n\n- name: configure html dir\n command: mkdir -p /var/www/html/{{container_name}}\n\n- name: copy template over\n template: src=templates/index.html.j2 dest=/var/www/html/{{container_name}}/index.html\n\n- name: container does not exist\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 647,
"all_permissive": false
} |
ansible_role | rahmatov/haproxy-dynamic-nginx-containers | 994e4f1d17278325b17f4f1bd96ec8a8595a2159 | 1 | ansible/roles/verify_haproxy | 6,936 | [
"no_license"
] | [
{
"path": "ansible/roles/verify_haproxy/tasks/main.yml",
"content": "- name: poll the haproxy site\n wait_for: host=0.0.0.0 port=80 timeout=15\n\n- command: rm -f index.html\n\n- command: wget -O index.html http://0.0.0.0:80\n\n- name: capture the output file comment\n command: cat index.html\n register:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 373,
"all_permissive": false
} |
ansible_role | LukasW01/VA | 046c606c77383f178372c395b0044a529ec0c5d2 | 0 | roles/hue | 6,936 | [
"no_license"
] | [
{
"path": "roles/hue/tasks/main.yml",
"content": "---\n- name: Include lamp\n ansible.builtin.include_tasks: lamp.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 67
},
{
"path": "roles/hue/tasks/lamp.yml",
"content": "---\n- name: Set state for lamp\n a... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 484,
"all_permissive": false
} |
ansible_role | LukasW01/VA | 046c606c77383f178372c395b0044a529ec0c5d2 | 0 | roles/printer | 6,936 | [
"no_license"
] | [
{
"path": "roles/printer/tasks/main.yml",
"content": "---\n- name: Include printer\n ansible.builtin.include_tasks: printer.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 73
},
{
"path": "roles/printer/tasks/printer.yml",
"content": "---\n- name: Get pr... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 906,
"all_permissive": false
} |
ansible_role | LukasW01/VA | 046c606c77383f178372c395b0044a529ec0c5d2 | 0 | roles/solar | 6,936 | [
"no_license"
] | [
{
"path": "roles/solar/tasks/main.yml",
"content": "---\n- name: Include solar\n ansible.builtin.include_tasks: solar.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 69
},
{
"path": "roles/solar/tasks/solar.yml",
"content": "---\n- name: Make HTTP GET re... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2405,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | ejemplos/roles/rhel7 | 6,936 | [
"no_license"
] | [
{
"path": "ejemplos/roles/rhel7/tasks/main.yml",
"content": "---\n\n# Ejemplo de como usar command\n - name: Ejecutar un comando en un host remoto.\n command: /usr/sbin/getenforce\n\n# Ejemplo de como usar shell\n - name: Ejecutar un comando en una shell remota.\n shell: echo \"test shell\" >> /tmp/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1438,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | rhel7/roles/archivos | 6,936 | [
"no_license"
] | [
{
"path": "rhel7/roles/archivos/tasks/main.yml",
"content": "---\n\n# tasks file\n\n - name: Copiar script de usuarios\n template:\n src: templates/script-arch.sh.j2\n dest: /etc/act/script-arch.sh\n owner: root\n group: root\n \n - name: Creacion de usuarios\n script: /etc/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3366,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | rhel7/roles/paquetes | 6,936 | [
"no_license"
] | [
{
"path": "rhel7/roles/paquetes/tasks/main.yml",
"content": "---\n\n# tasks file\n\n - name: Instalar mods\n command: yum install --setopt=group_package_types=mandatory,default,optional @additional-devel @base @core @compat-libraries @debugging @hardware-monitoring @legacy-unix @network-file-system-clie... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3158,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | rhel7/roles/repos | 6,936 | [
"no_license"
] | [
{
"path": "rhel7/roles/repos/tasks/main.yml",
"content": "---\n\n# tasks file\n\n - name: Congiguracion de repos\n command: rm -f /etc/yum.repos.d/*\n changed_when: no\n failed_when: no\n \n - name: Copiar repo\n template:\n src: templates/redhat.repo.j2\n dest: /etc/yum.repos.d/re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 657,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | rhel7/roles/servicios | 6,936 | [
"no_license"
] | [
{
"path": "rhel7/roles/servicios/tasks/main.yml",
"content": "---\n\n# tasks file\n\n - name: Arrancar xinetd\n service:\n name: xinetd\n state: started\n enabled: yes\n \n - name: Arrancar daytime\n command: /usr/sbin/chkconfig daytime-stream on \n \n - name: Arrancar... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2827,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | rhel7/roles/usuarios | 6,936 | [
"no_license"
] | [
{
"path": "rhel7/roles/usuarios/templates/script-user.sh.j2",
"content": "useradd -c \"G0000 - AdmPrepago\" -s /bin/ksh -d /export/oracle oracle;\nuseradd -c \"G0000 - AdmPrepago\" -s /bin/ksh -d /export/argentina argentina;\nuseradd -c \"G0000 - AdmPrepago\" -s /bin/bash -d /export/adm_tmar adm_tmar;\nuser... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3535,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | seguridad/roles/accesos | 6,936 | [
"no_license"
] | [
{
"path": "seguridad/roles/accesos/tasks/main.yml",
"content": "---\n\n# tasks file\n\n#7.5 System Access, Authentication and Authorization\n\n#7.5.1 Configuración de History Extendido\n\n#7.5.2 Configurar Cron\n\n - name: 7.5.2.1 Asegurarse que el servicio de Cron esta activado\n service:\n name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 6827,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | seguridad/roles/auditoria | 6,936 | [
"no_license"
] | [
{
"path": "seguridad/roles/auditoria/templates/audit.rules.j2",
"content": "# This file contains the auditctl rules that are loaded\n# whenever the audit daemon is started via the initscripts.\n# The rules are simply the parameters that would be passed\n# to auditctl.\n\n# First rule - delete all\n-D\n\n# I... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2409,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | seguridad/roles/inicial | 6,936 | [
"no_license"
] | [
{
"path": "seguridad/roles/inicial/templates/issue.net.j2",
"content": "********************************************************************************\n* *\n* Todo uso no autorizado o divulgación de la información de este sistem... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 5816,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | seguridad/roles/mantenimiento | 6,936 | [
"no_license"
] | [
{
"path": "seguridad/roles/mantenimiento/tasks/main.yml",
"content": "---\n\n# tasks file\n\n#7.6 Mantenimiento de Sistema\n\n#7.6.1 System File Permissions\n\n - name: 7.6.1.2 Verificar los permisos del archivo /etc/passwd\n file:\n dest: /etc/passwd\n owner: root\n group: root\n mo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1041,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | seguridad/roles/red | 6,936 | [
"no_license"
] | [
{
"path": "seguridad/roles/red/tasks/main.yml",
"content": "---\n\n# tasks file\n\n#7.3 Configuración de Red\n\n#7.3.1 Modificar parámetros de Red (Solo hosts)\n\n - name: 7.3.1.1 Desactivar IP Forwarding (Server cómo Router)\n sysctl:\n name: net.ipv4.ip_forward\n value: 0\n state: prese... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3440,
"all_permissive": false
} |
ansible_role | rdnovell/Ansible | 3b5fed637c31cbae8435fd43658c41c640f9609b | 0 | seguridad/roles/servicios | 6,936 | [
"no_license"
] | [
{
"path": "seguridad/roles/servicios/templates/ntp.conf.SDP9.j2",
"content": "keys /etc/ntp.keys\n\nrestrict -4 default kod nomodify notrap nopeer noquery\nrestrict -6 default kod nomodify notrap nopeer noquery\n\nserver vlz4egsdp1 prefer\nserver 10.28.218.219\nserver 10.26.148.219\nserver 127.127.1.0\nfudg... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 9646,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/base | 6,936 | [
"no_license"
] | [
{
"path": "roles/base/tasks/main.yml",
"content": "---\n# tasks file for roles/base\n- name: Add group\n group:\n name: '{{ public_group }}'\n state: present\n gid: '{{ public_gid }}'\n- name: Add user\n user:\n name: '{{ public_user }}'\n uid: '{{ public_uid }}'\n group: '{{ public_gro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1156,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/keepalived | 6,936 | [
"no_license"
] | [
{
"path": "roles/keepalived/handlers/main.yml",
"content": "---\n# handlers file for roles/keepalived\n- name: Restart keepalived\n systemd:\n name: keepalived\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 121
},
{
"path": "roles/keepa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 897,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/lsyncd | 6,936 | [
"no_license"
] | [
{
"path": "roles/lsyncd/defaults/main.yml",
"content": "---\n# defaults file for roles/lsyncd",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 36
},
{
"path": "roles/lsyncd/vars/main.yml",
"content": "---\n# vars file for roles/lsyncd\ndata_dir: /data\n",
"l... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 752,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/mariadb | 6,936 | [
"no_license"
] | [
{
"path": "roles/mariadb/tasks/main.yml",
"content": "---\n# tasks file for roles/mariadb\n- name: Install mariadb-server\n yum:\n name: mariadb-server\n state: latest\n- name: Config mariadb-server\n copy:\n src: server.cnf\n dest: /etc/my.cnf.d/server.cnf\n mode: \"0644\"\n owner: root... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 595,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/nfs | 6,936 | [
"no_license"
] | [
{
"path": "roles/nfs/tasks/main.yml",
"content": "---\n# tasks file for roles/nfs\n- name: Install nfs-utils\n yum:\n name: nfs-utils\n state: latest\n- name: Config nfs-utils\n template:\n src: exports.j2\n dest: /etc/exports\n mode: \"0644\"\n owner: root\n group: root\n notify: Re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 608,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/nginx | 6,936 | [
"no_license"
] | [
{
"path": "roles/nginx/templates/default.conf.j2",
"content": "server {\n listen {{ nginx_port }};\n server_name localhost;\n location / {\n root {{ nginx_root }};\n index index.html index.htm;\n }\n}\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 739,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/php | 6,936 | [
"no_license"
] | [
{
"path": "roles/php/tasks/main.yml",
"content": "---\n# tasks file for roles/php\n- name: install php\n yum:\n name: \"{{ packages }}\"\n state: present\n enablerepo: remi-php71\n when: is_php\n- name: Config php\n template:\n src: '{{ item.src }}'\n dest: '{{ item.dest }}'\n mode: '{{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1075,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/redis | 6,936 | [
"no_license"
] | [
{
"path": "roles/redis/tasks/main.yml",
"content": "---\n# tasks file for roles/redis\n- name: Install redis\n yum:\n name: redis\n state: latest\n- name: Config redis\n template:\n src: redis.conf.j2\n dest: /etc/redis.conf\n mode: \"0640\"\n owner: redis\n group: root\n notify: Res... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 441,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/rsync | 6,936 | [
"no_license"
] | [
{
"path": "roles/rsync/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - roles/rsync",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 69
},
{
"path": "roles/rsync/handlers/main.yml",
"content": "---\n# handlers file for r... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1081,
"all_permissive": false
} |
ansible_role | xiadongzhi1988/ansible-project1 | 41e97122b7919f0a5f08bff57e174c033579e08a | 0 | roles/static_web | 6,936 | [
"no_license"
] | [
{
"path": "roles/static_web/vars/main.yml",
"content": "---\n# vars file for roles/static_web\nis_proxy: true\nis_rewrite: true\nis_http: false\nis_https: true\nis_web: false\nis_php: false\n\ncodes: /code/\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 142
},
{
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 2684,
"all_permissive": false
} |
ansible_role | litmuschaos/test-tools | dd64cebf22849efbef2ae730e456eb266d829f12 | 29 | custom/app-setup/kafka/roles/configure-exporter | 6,936 | [
"no_license"
] | [
{
"path": "custom/app-setup/kafka/roles/configure-exporter/tasks/main.yml",
"content": "---\n- name: \"[Info]: Creating litmus namespace\"\n community.kubernetes.k8s:\n name: litmus\n api_version: v1\n kind: Namespace\n state: present\n\n- name: \"[Install]: Installing chaos-exporter-service... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2397,
"all_permissive": false
} |
ansible_role | litmuschaos/test-tools | dd64cebf22849efbef2ae730e456eb266d829f12 | 29 | custom/app-setup/kafka/roles/configure-kafka | 6,936 | [
"no_license"
] | [
{
"path": "custom/app-setup/kafka/roles/configure-kafka/vars/main.yml",
"content": "---\n# vars file for configure-kafka\n KUDO_VERSION : \"0.12.0\"\n OS : \"linux\"\n ARCH : \"x86_64\"\n KAFKA_NAMESPACE: \"{{ lookup('env','KAFKA_NAMESPACE') }}\"\n",
"license_type": "no_license",
"detected_licenses"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2640,
"all_permissive": false
} |
ansible_role | litmuschaos/test-tools | dd64cebf22849efbef2ae730e456eb266d829f12 | 29 | custom/app-setup/kafka/roles/configure-monitoring | 6,936 | [
"no_license"
] | [
{
"path": "custom/app-setup/kafka/roles/configure-monitoring/tasks/main.yml",
"content": "---\n- name: \"[Info]: Cloning the git repository of litmus \"\n git:\n repo: https://github.com/litmuschaos/litmus.git\n dest: litmus\n version: '{{ LITMUS_GIT_TAG }}'\n force: true\n\n- name: \"[Info... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2784,
"all_permissive": false
} |
ansible_role | alisbiaa/MonthlyChallenge | 30f49e53cbf91bcb6022622e679bdedf9469b3fa | 0 | demo/ansible/roles/common | 6,936 | [
"no_license"
] | [
{
"path": "demo/ansible/roles/common/tasks/main.yaml",
"content": "---\n- name: Upgrade all packages\n ansible.builtin.dnf:\n name: \"*\"\n state: latest\n\n- name: Ensure the 'automation' user exists\n become: true\n ansible.builtin.user:\n name: automation\n create_home: yes\n groups: wh... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1420,
"all_permissive": false
} |
ansible_role | alisbiaa/MonthlyChallenge | 30f49e53cbf91bcb6022622e679bdedf9469b3fa | 0 | hands-on/ansible/roles/add_ma_service | 6,936 | [
"no_license"
] | [
{
"path": "hands-on/ansible/roles/add_ma_service/tasks/main.yml",
"content": "- name: Copy environment variables file of appdynamics\n become: yes\n ansible.builtin.copy:\n src: .env\n dest: /etc/environment\n owner: \"{{ appdynamicsUser }}\"\n group: \"{{ appdynamicsUser }}\"\n\n- name: Add a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1023,
"all_permissive": false
} |
ansible_role | alisbiaa/MonthlyChallenge | 30f49e53cbf91bcb6022622e679bdedf9469b3fa | 0 | hands-on/ansible/roles/download_ma | 6,936 | [
"no_license"
] | [
{
"path": "hands-on/ansible/roles/download_ma/tasks/main.yaml",
"content": "- name: Check if machineAgentHomeDirectory exists\n stat:\n path: \"{{ machineAgentHomeDirectory }}\"\n register: machine_agent_dir_stat\n\n- name: Check if appdArtifactsHomeDirectory exists\n stat:\n path: \"{{ appdArtifac... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1277,
"all_permissive": false
} |
ansible_role | alisbiaa/MonthlyChallenge | 30f49e53cbf91bcb6022622e679bdedf9469b3fa | 0 | hands-on/ansible/roles/setup | 6,936 | [
"no_license"
] | [
{
"path": "hands-on/ansible/roles/setup/tasks/main.yml",
"content": "---\n- name: Upgrade all packages\n ansible.builtin.dnf:\n name: \"*\"\n state: latest\n\n- name: Install required packages\n ansible.builtin.dnf:\n name:\n - procps\n - unzip\n state: latest\n\n- name: Ensure the '... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1715,
"all_permissive": false
} |
ansible_role | karimfadl/Magento-Ansible | 90bb96afc7b8bc82e2123516c8345795071e086e | 0 | roles/apache | 6,936 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yml",
"content": "---\n- name: Install Apache Package\n yum: name=httpd state=present\n\n- name: Copy Apache Default Configuration File\n template: src=httpd.conf dest=/etc/httpd/conf/httpd.conf\n \n- name: Add Module Section\n template: src=module.conf dest=/etc/httpd/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 897,
"all_permissive": false
} |
ansible_role | karimfadl/Magento-Ansible | 90bb96afc7b8bc82e2123516c8345795071e086e | 0 | roles/common | 6,936 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n- name: Copy The EPEL Repository\n template: src=epel.repo dest=/etc/yum.repos.d/\n\n- name: Copy The Mysql Repository\n template: src=mysql-community.repo dest=/etc/yum.repos.d/\n\n- name: Copy The PHP Repository\n template: src=ius.repo dest=/et... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 365,
"all_permissive": false
} |
ansible_role | karimfadl/Magento-Ansible | 90bb96afc7b8bc82e2123516c8345795071e086e | 0 | roles/crons | 6,936 | [
"no_license"
] | [
{
"path": "roles/crons/tasks/main.yml",
"content": "---\n- name: \"Setup Magento2 crons : Create maintenance cron\"\n cron: name=\"Magento maintenance\"\n user=\"apache\" job=\"php -c /etc {{ root_dir }}/bin/magento cron:run\"\n\n- name: \"Setup Magento2 crons : Create update cron\"\n cron: name=\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 582,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.