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 | mbluemer/workstation-playbook | bef508fc852ac6f9fdfe4848cc747537953274f2 | 0 | roles/node | 492 | [
"no_license"
] | [
{
"path": "roles/node/tasks/main.yml",
"content": "---\n- name: Get distribution vars\n include_vars: \"{{ item }}\"\n with_first_found:\n - \"{{ ansible_distribution }}.yml\"\n\n- name: install node\n package:\n name: node\n state: present\n\n- name: install nvm\n shell: curl -o- https://raw.g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 641,
"all_permissive": false
} |
ansible_role | mbluemer/workstation-playbook | bef508fc852ac6f9fdfe4848cc747537953274f2 | 0 | roles/packages | 492 | [
"no_license"
] | [
{
"path": "roles/packages/tasks/main.yml",
"content": "---\n- name: install packages\n package:\n name: \"{{ item }}\"\n state: present\n with_items: \"{{ installed_packages }}\"\n\n- name: install applications (homebrew)\n homebrew_cask:\n name: \"{{ item }}\"\n state: present\n with_items:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 740,
"all_permissive": false
} |
ansible_role | mbluemer/workstation-playbook | bef508fc852ac6f9fdfe4848cc747537953274f2 | 0 | roles/zsh | 492 | [
"no_license"
] | [
{
"path": "roles/zsh/README.md",
"content": "# fish\nInstall fish and stuff",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "roles/zsh/tasks/main.yml",
"content": "- name: install zsh shell\n package:\n name: zsh\n state: present\n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 234,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/common | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/common/handlers/main.yml",
"content": "---\n- name: Restart sshd\n service:\n name=ssh\n state=restarted\n enabled=yes\n\n- name: Install traceroute\n apt:\n name: traceroute\n state: latest\n",
"license_type": "no_license",
"detected_licenses": [],
"siz... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1780,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/dbservers | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/dbservers/tasks/mysql-server.yml",
"content": " - name: Install MySQL Server\n apt: name={{ item }}\n with_items:\n - python-mysqldb\n - mysql-server\n\n - name: Start the MySQL service\n action: service name=mysql state=started\n\n # 'localhost' needs to be th... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 681,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/nfs-deploy-clients | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nfs-deploy-clients/tasks/client-mount.yml",
"content": "---\n- name: Copy client scripts over\n copy: src=client-mount dest=/usr/local owner=root mode=755\n\n- name: Run client mount script\n command: \"/usr/local/client-mount/client-mount.sh\"\n register: ch_output\n\n\n",
"... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 520,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/nfs-deploy-servers | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nfs-deploy-servers/files/create-share/create-share-dir.sh",
"content": "#!/bin/bash\n\n# <NAME>\n# NFS Hosts Script file\n\n#Create the Share Directory on the Host Server\nDirectory=\"/var/nfs\"\n\n#check if directory exists already\nif [ ! -d $Directory ]; then\n sudo mkdir /va... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1472,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/nfs-test-clients | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nfs-test-clients/tasks/main.yml",
"content": "---\n\n- name: create ro dir on clients\n file:\n path: /mnt/nfs/export/ro\n state: directory\n recurse: yes\n\n- name: create map-to-nobody dir on clients\n file:\n path: /mnt/nfs/export/map-to-nobody\n state: dire... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2372,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/nfs-test-servers | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nfs-test-servers/tasks/main.yml",
"content": "---\n - name: Add ro directory\n file: \n path: /export/to\n state: directory\n mode: 0755 \n\n - name: Add map to nobody directory\n file:\n path: /export/map-to-nobody\n state: directory\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2536,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/nss-mysql-clients | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nss-mysql-clients/tasks/main.yml",
"content": "---\n - name: Install Pam/NSS Packages + whois for mkpasswd cmd\n apt: name={{ item }}\n with_items:\n - whois\n - mysql-client\n - libnss-mysql-bg\n - libpam-mysql\n\n - name: Fix libnss-mysql.cfg host\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 17735,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/nss-mysql-servers | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nss-mysql-servers/handlers/main.yml",
"content": "---\n - name: Copy over initialization file\n template: src=\"nss-mysql-init-auth.sql.j2\" dest=/tmp/nss-mysql-init-auth.sql owner=root mode=0600\n\n - name: Create Auth DB\n mysql_db: name={{ nss_mysql_db }} state=import tar... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 4834,
"all_permissive": false
} |
ansible_role | joemulray/365 | 1c9005ca2b9b94498cb2150bbad2d9962c6727fd | 0 | Ansible/roles/setup-accounts | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/setup-accounts/unit_tests/ut-create-user-home.sh",
"content": "#!/bin/bash\n\n#\n# Create a new user and verify the next UID is used and no\n# home directory is created\n#\n\nfunction getMaxUID {\n getent passwd | sort -nr -k +3 -t : | grep -v nobody | head -n 1 | cut -f 3 -d :\... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 4160,
"all_permissive": false
} |
ansible_role | kyleabenson/fest2020collection | 1619d31f8524db6a4ffcd86208733db0b69e7045 | 3 | roles/gcp_deploy | 492 | [
"no_license"
] | [
{
"path": "roles/gcp_deploy/README.md",
"content": "Role Name\n=========\n\nDeploy a simple compute instance to GCP for hosting purposes with a static and public IP addreess.\n\nRequirements\n------------\n\n* The `google.cloud` collection -- installable via `ansible-galaxy collection install google.cloud`\... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 6942,
"all_permissive": false
} |
ansible_role | kyleabenson/fest2020collection | 1619d31f8524db6a4ffcd86208733db0b69e7045 | 3 | roles/host_config | 492 | [
"no_license"
] | [
{
"path": "roles/host_config/templates/post_template.md.j2",
"content": "---\ntitle: {{ book_title }}\ndate: 2019-10-29T10:07:47+06:00\ndraft: false\n\n# post thumb\nimage: ../images/{{ book_title |replace(' ','_')| lower()}}.jpg\n\n# meta description\n#description: \"this is meta description\"\n\n# taxonom... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3976,
"all_permissive": false
} |
ansible_role | boliu83/kvmdata | e02cacf83bc50ebe208818a9a5383ef101b1ba53 | 0 | playbooks/spectrum/roles/common | 492 | [
"no_license"
] | [
{
"path": "playbooks/spectrum/roles/common/tasks/main.yml",
"content": "- name: install docker dependencies\n yum:\n name:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n state: latest\n\n- name: Add Docker-ce repository\n yum_repository:\n name: docker-ce-stable\n de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2561,
"all_permissive": false
} |
ansible_role | boliu83/kvmdata | e02cacf83bc50ebe208818a9a5383ef101b1ba53 | 0 | playbooks/spectrum/roles/master | 492 | [
"no_license"
] | [
{
"path": "playbooks/spectrum/roles/master/tasks/main.yml",
"content": "- name: open firewall ports\n firewalld:\n port: \"{{ item }}\"\n zone: public\n permanent: yes\n immediate: yes\n state: enabled\n loop:\n - 6443/tcp\n - 2379-2380/tcp\n - 10250-10252/tcp\n\n",
"license_ty... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 204,
"all_permissive": false
} |
ansible_role | boliu83/kvmdata | e02cacf83bc50ebe208818a9a5383ef101b1ba53 | 0 | playbooks/spectrum/roles/worker | 492 | [
"no_license"
] | [
{
"path": "playbooks/spectrum/roles/worker/tasks/main.yml",
"content": "- name: open firewall ports\n firewalld:\n port: \"{{ item }}\"\n zone: public\n permanent: yes \n immediate: yes\n state: enabled\n loop:\n - 10250/tcp\n - 30000-32767/tcp\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 185,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/arangodb | 492 | [
"no_license"
] | [
{
"path": "roles/arangodb/handlers/main.yml",
"content": "---\n# file: roles/arangodb/handlers/main.yml\n\n# under Development\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 66
},
{
"path": "roles/arangodb/tasks/main.yml",
"content": "---\n\n- name: step 1 |... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3179,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/bashrc | 492 | [
"no_license"
] | [
{
"path": "roles/bashrc/tasks/main.yml",
"content": "---\n- name: step 1 | Checking .envrc file exist or not\n become: yes\n become_user: '{{user}}'\n stat:\n path: \"{{home_directory}}/.envrc\"\n register: folder_stats\n\n- name: step 2 | writing and source the bashrc\n become_user: '{{user}}'\n s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 385,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/cassandra | 492 | [
"no_license"
] | [
{
"path": "roles/cassandra/tasks/main.yml",
"content": "---\n- name: step 1 | Checking {{cassandra_version}} binary\n become: yes\n become_user: '{{user}}'\n stat:\n path: \"{{BINARIES}}/{{cassandra_binary}}\"\n register: folder_stats\n\n- name: Step 2 | copy {{cassandra_version}}\n become: yes\n be... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2366,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/common | 492 | [
"no_license"
] | [
{
"path": "roles/common/templates/cfiles/csync",
"content": "#!/bin/bash\n# csync\n# Sync folder to slaves defined in ~/.cslaves\n\nif [ \"$1\" = \"-h\" ] || [ \"$1\" = \"--help\" ]; then\n echo 'Sync folder to slaves defined in ~/.cslaves'\n echo 'Usage: csync [folder]'\n exit 0\nfi\n\nif [ $# -lt... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 32509,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/elasticsearch | 492 | [
"no_license"
] | [
{
"path": "roles/elasticsearch/tasks/main.yml",
"content": "---\n- name: step 1 | Checking {{elasticsearch_version}} binary\n become: yes\n become_user: '{{user}}'\n stat:\n path: \"{{BINARIES}}/{{elasticsearch_binary}}\"\n register: folder_stats\n\n- name: Step 2 | copy {{elasticsearch_version}}\n b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2302,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/hadoop | 492 | [
"no_license"
] | [
{
"path": "roles/hadoop/handlers/main.yml",
"content": "---\n# file: roles/hadoop/handlers/main.yml\n\n- name: start hdfs\n shell: start-dfs.sh\n ignore_errors: yes\n\n\n- name: stop hdfs\n shell: stop-dfs.sh\n ignore_errors: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"si... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4980,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/hbase | 492 | [
"no_license"
] | [
{
"path": "roles/hbase/handlers/main.yml",
"content": "---\n# file: roles/hadoop/handlers/main.yml\n\n- name: start hbase\n shell: start-hbase.sh\n ignore_errors: yes\n\n\n- name: stop hbase\n shell: stop-hbase.sh\n ignore_errors: yes\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3104,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/kafka | 492 | [
"no_license"
] | [
{
"path": "roles/kafka/tasks/main.yml",
"content": "---\n- name: step 1 | Checking {{kafka_version}} binary\n become: yes\n become_user: '{{user}}'\n stat:\n path: \"{{BINARIES}}/{{kafka_binary}}\"\n register: folder_stats\n\n- name: step 2 | copy {{kafka_version}}\n become: yes\n become_user: '{{us... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1847,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/kubernetes | 492 | [
"no_license"
] | [
{
"path": "roles/kubernetes/templates/daemon.json",
"content": "{\n \"insecure-registries\" : [ \"zerocrack:7070\" ]\n}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 53
},
{
"path": "roles/kubernetes/tasks/main.yaml",
"content": "\n- name: Execute K8 com... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1041,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/nginx | 492 | [
"no_license"
] | [
{
"path": "roles/nginx/handlers/main.yml",
"content": "---\n# file: roles/nginx/handlers/main.yml\n\n# under construction\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 64
},
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: step 1 | Checking... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1977,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/snappy | 492 | [
"no_license"
] | [
{
"path": "roles/snappy/tasks/main.yml",
"content": "---\n- name: step 1 | Checking {{snappy_version}} binary\n become: yes\n become_user: '{{user}}'\n stat:\n path: \"{{BINARIES}}/{{snappy_binary}}\"\n register: folder_stats\n\n- name: step 2 | copy {{snappy_version}}\n become: yes\n become_user: '... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1117,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/spark | 492 | [
"no_license"
] | [
{
"path": "roles/spark/handlers/main.yml",
"content": "---\n# file: roles/spark/handlers/main.yml\n\n- name: start spark\n shell: /home/zerocrack/stack/spark-1.5.2-bin-2.7.2/sbin/start-all.sh\n ignore_errors: yes\n\n\n- name: stop stark\n shell: /home/zerocrack/stack/spark-1.5.2-bin-2.7.2/sbin/start-all.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4248,
"all_permissive": false
} |
ansible_role | AnilPatel13/Ansible | e75003db4d9eb09ab999c1642ddb20a12b712e3d | 1 | roles/zookeeper | 492 | [
"no_license"
] | [
{
"path": "roles/zookeeper/handlers/main.yml",
"content": "---\n# file: roles/zookeeper/handlers/main.yml\n\n- name: start zookepper\n shell: zkServer.sh start\n ignore_errors: yes\n\n\n- name: stop zookeeper\n shell: zkServer.sh stop\n ignore_errors: yes\n",
"license_type": "no_license",
"detec... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2566,
"all_permissive": false
} |
ansible_role | allanian/iac | e645c347efdaee127416a88cbde55cedffc9b6dc | 0 | terraform/ansible/roles/docker | 492 | [
"no_license"
] | [
{
"path": "terraform/ansible/roles/docker/defaults/main.yml",
"content": "---\n# dir for data-root for docker\ndata_dir: \"/data/docker\"\nlog_driver: \"json\"\ndocker_packages:\n EL7:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n - python-pip\n# - python36\n# - python36-pip\... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 2703,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/add_config_hosts_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/add_config_hosts_role/tasks/main.yml",
"content": "# roles/alb_config_hosts_role/tasks/main.yml\n\n# ciecleciの絶対パスを指定\n- name: Read external variable file\n include_vars: \"/home/circleci/project/Ansible/vars.yml\"\n\n- name: Add line ALB dns config_hosts on my development environm... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 629,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/app_source_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/app_source_role/tasks/main.yml",
"content": "# roles/app_source_role/tasks/main.yml\n# 存在している場合のみcloneする,存在している場合はスキップする\n\n- name: Check if raisetech-live8-sample-app is cloned on my EC2\n shell: ls -l | grep \"raisetech-live8-sample-app\"\n register: app_exists_check\n ignore_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 455,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/bundler_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/bundler_install_role/tasks/main.yml",
"content": "# roles/bundler_install_role/tasks/main.yml\n- name: Install bundler gem\n shell: bash -lc \"/home/ec2-user/.rbenv/shims/gem install bundler -v 2.3.14\"\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": 151,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/db_server_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/db_server_role/tasks/main.yml",
"content": "# roles/db_server_role/tasks/main.yml\n# lineinfile moduleでdbの認証情報を入力していますが,template moduleでも可能 使用したい方は下のコメントアウト値を参照\n\n# circleciの絶対パスを指定CI/CDツールの環境に応じて変更\n- name: Read external variable file\n include_vars: \"/home/circleci/project/Ansi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2177,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/image_magick_config_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/image_magick_config_role/tasks/main.yml",
"content": "# roles/image_magick_config_role/tasks/main.yml\n# 画像表示の設定を追加\n\n- name: Active Storage setting up Minimagick\n lineinfile:\n path: \"/home/ec2-user/raisetech-live8-sample-app/config/application.rb\"\n line: \" config.act... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 310,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/mysql_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/mysql_install_role/tasks/main.yml",
"content": "# 先にデフォルトで入っているdatabase mariadbを削除してから実行\n\n- name: Remove MariaDB of default DB server on my EC2\n shell: |\n sudo yum update -y\n sudo yum remove -y mariadb-*\n\n- name: Install MySQL on my EC2\n shell: |\n sudo yum locali... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 463,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/nginx_conf_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nginx_conf_role/templates/nginx.conf",
"content": "# For more information on configuration, see:\n# * Official English Documentation: http://nginx.org/en/docs/\n# * Official Russian Documentation: http://nginx.org/ru/docs/\n\nuser ec2-user;\nworker_processes auto;\nerror_log /va... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 3859,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/nginx_server_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/nginx_server_role/tasks/main.yml",
"content": "# roles/nginx_server_role/tasks/main.yml\n\n- name: Install the latest version of nginx\n command: sudo amazon-linux-extras install nginx1 -y\n\n- name: Start nginx service\n service:\n name: nginx\n state: started\n become: Tr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 359,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/node_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/node_install_role/tasks/main.yml",
"content": "# roles/node_install_role/tasks/main.yml\n\n- name: Install NVM for installing node v17.9.1\n shell: bash -lc \"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash\"\n\n- name: Source bash profile\n shell: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 348,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/ping_check_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/ping_check_role/tasks/main.yml",
"content": "# roles/ping_check_role/tasks/main.yml\n# 最初にターゲットノードへの疎通確認をする\n- name: ping checking to target node connection\n ping:\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 118
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 118,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/puma_server_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/puma_server_role/tasks/main.yml",
"content": "# roles/puma_server_role/tasks/main.yml\n\n- name: Port 3000 delete line to puma.rb \n lineinfile:\n path: \"/home/ec2-user/raisetech-live8-sample-app/config/puma.rb\"\n state: present\n line: '# port ENV.fetch(\"PORT\") { 3000... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1926,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/rails_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/rails_install_role/tasks/main.yml",
"content": "# roles/rails_install_role/tasks/main.yml\n- name: Install rails\n shell: bash -lc \"/home/ec2-user/.rbenv/shims/gem install rails -v 7.1.3.2\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 141
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 141,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/ruby_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/ruby_install_role/tasks/main.yml",
"content": "# roles/ruby_install_role/tasks/main.yml\n# 必ずec2-userでインストールする\n\n- name: Install rbenv\n git:\n repo: https://github.com/sstephenson/rbenv.git\n dest: /home/ec2-user/.rbenv\n\n- name: Set up rbenv in profile\n lineinfile:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1358,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/s3_config_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/s3_config_role/tasks/main.yml",
"content": "# roles/s3_config_role/tasks/main.yml\n\n- name: Comment out store uploaded files on the local file configration\n lineinfile:\n path: \"/home/ec2-user/raisetech-live8-sample-app/config/environments/development.rb\"\n state: present... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1680,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/set_up_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/set_up_role/tasks/main.yml",
"content": "# roles/set_up_role/tasks/main.yml\n\n# bin/setup コマンドで同時にgemの依存関係を解決するために実行されるが,\"t2micro instance\"だとメモリの関係で処理が追いつかずタイムアウトになるので先に実行\n- name: Run Command \"bundle install\"\n shell: bash -lc \"bundle install\"\n args: \n chdir: /home/ec... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 629,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/template_db_server_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/template_db_server_role/tasks/main.yml",
"content": "# roles/template_db_server_role/templates/database.yml\n\n- name: Read external variable file\n include_vars: \"/home/circleci/project/Ansible/vars.yml\"\n\n- name: Config database.yml\n template: \n src: \"/home/circleci/pro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 402,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/webpack_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/webpack_install_role/tasks/main.yml",
"content": "# roles/webpack_install_role/tasks/main.yml\n\n- name: Initialized npm for Installing Webpack and Webpackcli\n shell: bash -lc \"npm init -y\"\n\n- name: Installing Webpack and Webpackcli on devDependencies\n shell: bash -lc \"npm ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 259,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/yarn_install_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/yarn_install_role/tasks/main.yml",
"content": "# roles/yarn_install_role/tasks/main.yml\n\n- name: Install Yarn version 1.22.19\n shell: bash -lc \"npm install -global yarn@1.22.19\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 132
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 132,
"all_permissive": false
} |
ansible_role | tushiko23/circleci-rails-app | 49120b8d1096b7c991f344bfad01791e02f2c6b0 | 0 | Ansible/roles/yum_packege_role | 492 | [
"no_license"
] | [
{
"path": "Ansible/roles/yum_packege_role/tasks/main.yml",
"content": "# roles/yum_package_role/tasks/main.yml\n- name: Update yum packages\n command: sudo yum update -y\n\n- name: Install yum packages on my EC2 server\n yum:\n name:\n - git\n - make\n - gcc\n - gcc-c++\n - pat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 549,
"all_permissive": false
} |
ansible_role | halaby/Complete-CICD-Pipeline | 3d071015885eaf737bdb8deeb2517d9bf0e72ba0 | 0 | .circleci/ansible/roles/configure-server | 492 | [
"no_license"
] | [
{
"path": ".circleci/ansible/roles/configure-server/tasks/main.yml",
"content": "- name: \"download node.js\"\n become: true\n shell: |\n # Install Node.js LTS version as our base Node.js version\n curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -\n sudo apt-get install -y nodejs... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 415,
"all_permissive": false
} |
ansible_role | Coit-IO/ansible-config | b40ff7b6b72a0d081ab2adbe628cec2e138b0354 | 1 | roles/apache | 492 | [
"no_license"
] | [
{
"path": "roles/apache/vars/RedHat.yaml",
"content": "package_name: httpd\nservice_name: httpd\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 40
},
{
"path": "roles/apache/handlers/main.yaml",
"content": " - name: Restart Apache\n service:\n ... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1530,
"all_permissive": false
} |
ansible_role | Coit-IO/ansible-config | b40ff7b6b72a0d081ab2adbe628cec2e138b0354 | 1 | roles/php | 492 | [
"no_license"
] | [
{
"path": "roles/php/molecule/default/converge.yml",
"content": "---\n- name: Converge\n hosts: all\n tasks:\n - name: \"Include php\"\n include_role:\n name: \"php\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 109
},
{
"path": "roles/php/mol... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 620,
"all_permissive": false
} |
ansible_role | n0mik0s/grafana | a6f43131f9966c7d9e4039999c5eba4f2280a8d1 | 0 | roles/grafana | 492 | [
"no_license"
] | [
{
"path": "roles/grafana/tasks/main.yml",
"content": "---\n- name: Copy the script to check the ssh pub files\n template: src=pub_check.sh dest=/root/pub_check.sh\n\n- name: cron job for ssh pub files comparising\n cron:\n name: \"check ssh pub files\"\n minute: \"*/1\"\n job: \"/bin/bash /root/p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1313,
"all_permissive": false
} |
ansible_role | n0mik0s/grafana | a6f43131f9966c7d9e4039999c5eba4f2280a8d1 | 0 | roles/nginx | 492 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Copy nginx configuration for grafana 3000 port redirection\n template: src=default.conf dest=/etc/nginx/sites-available/default\n notify: restart nginx",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 163
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 163,
"all_permissive": false
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/config_ansible | 492 | [
"permissive"
] | [
{
"path": "roles/config_ansible/templates/vimrc.j2",
"content": "autocmd BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml\nautocmd FileType yaml setlocal ai ts=2 sw=2 et nu cuc\nautocmd FileType yaml colo desert\n\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
]... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 532,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/config_dns | 492 | [
"permissive"
] | [
{
"path": "roles/config_dns/tasks/main.yml",
"content": "---\n- name: Check if file exists\n ansible.builtin.stat:\n path: /etc/dhcp/dhclient.conf\n register: stat\n\n- name: Add dns servers\n ansible.builtin.lineinfile:\n path: /etc/dhcp/dhclient.conf\n regexp: \"^prepend domain-name-servers\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 359,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/config_git | 492 | [
"permissive"
] | [
{
"path": "roles/config_git/files/gitconfig/hooks/pre-commit",
"content": "#!/bin/bash\nEXIT_CODE_ABORT=1\nLINT_FAILURE=0\n# Get the list of files that this commit touches\nFILES=$(git diff --name-only --staged)\n\nfor FILE in ${FILES}; do\n # It's no good linting files that have been deleted! Check if\n... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2367,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/customize_gnome | 492 | [
"permissive"
] | [
{
"path": "roles/customize_gnome/templates/guillotine.json.j2",
"content": "{\n \"settings\": {\n \"loglevel\": \"warning\"\n },\n \"menu\": [\n {\n \"type\": \"switch\",\n \"title\": \"Proxy\",\n \"start\": \"{{ lookup('env','HOME') }}/proxy.sh enable\",\n \"s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1528,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/debian | 492 | [
"permissive"
] | [
{
"path": "roles/debian/tasks/main.yml",
"content": "- when: ansible_distribution == 'Debian'\n block:\n - name: Config repos\n ansible.builtin.apt_repository:\n repo: deb https://deb.debian.org/debian stretch-backports main\n state: present\n become: yes\n\n - name: Install d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 526,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/deepin | 492 | [
"permissive"
] | [
{
"path": "roles/deepin/templates/fixkeyboard.sh",
"content": "#!/bin/sh\nexport DISPLAY=:0.0\ndbus-monitor --session \"interface='com.deepin.SessionManager'\" | \\\n(\n# while read x; do\n while true; do\n read x\n case $x in\n *\"boolean true\"*) echo \"Screen locked\";;\n *\"boolean fal... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2058,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_code | 492 | [
"permissive"
] | [
{
"path": "roles/install_code/templates/code.desktop.j2",
"content": "[Desktop Entry]\nName=Visual Studio Code\nComment=Code Editing. Redefined.\nGenericName=Text Editor\nExec={% if pixelbook is sameas true %}sommelier -X --scale=0.6 --dpi=160{% endif %}/usr/share/code/code --unity-launch %F\nIcon=com.visua... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1516,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_directorystudio | 492 | [
"permissive"
] | [
{
"path": "roles/install_directorystudio/tasks/main.yml",
"content": "---\n- name: Download apache Directory Studio\n ansible.builtin.get_url:\n url: https://downloads.apache.org/directory/studio/2.0.0.v20210717-M17/ApacheDirectoryStudio-2.0.0.v20210717-M17-linux.gtk.x86_64.tar.gz\n #url: http://ftp.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 805,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_docker | 492 | [
"permissive"
] | [
{
"path": "roles/install_docker/tasks/main.yml",
"content": "---\n- name: Get repo key\n ansible.builtin.apt_key:\n url: \"https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg\"\n state: present\n become: yes\n\n- name: Add docker repo\n ansible.builtin.apt_repository:\n repo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1511,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_helm | 492 | [
"permissive"
] | [
{
"path": "roles/install_helm/tasks/main.yml",
"content": "---\n- name: Install helm\n ansible.builtin.shell: 'curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash'\n become: yes\n args:\n warn: false\n\n",
"license_type": "permissive",
"detected_licenses": [
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 173,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_konsole | 492 | [
"permissive"
] | [
{
"path": "roles/install_konsole/tasks/main.yml",
"content": "---\n- name: Install konsole\n ansible.builtin.package:\n name: konsole\n state: present\n become: yes\n\n- name: Copy icon\n ansible.builtin.copy:\n src: crostini-192.png\n dest: /usr/share/icons/default/konsole.png\n become: yes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 672,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_kubectl | 492 | [
"permissive"
] | [
{
"path": "roles/install_kubectl/tasks/stern.yml",
"content": "---\n- ansible.builtin.set_fact:\n stern_dir: /opt/stern\n\n- name: Create dir\n ansible.builtin.file:\n path: \"{{ stern_dir }}\"\n state: directory\n mode: '0755'\n become: yes\n\n- name: Check local file\n ansible.builtin.stat:... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3170,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_packer | 492 | [
"permissive"
] | [
{
"path": "roles/install_packer/tasks/main.yml",
"content": "---\n- name: Get repo key\n ansible.builtin.apt_key:\n url: https://apt.releases.hashicorp.com/gpg\n state: present\n become: yes\n\n- name: Add packer repo\n ansible.builtin.apt_repository:\n repo: \"deb [arch=amd64] https://apt.relea... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 453,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_postman | 492 | [
"permissive"
] | [
{
"path": "roles/install_postman/tasks/main.yml",
"content": "---\n- name: Install deps\n ansible.builtin.package:\n name: \"{{ item }}\"\n state: present\n become: yes\n loop:\n - libgconf-2-4\n - libgtk2.0-0\n\n- name: Download Postman\n ansible.builtin.unarchive:\n src: https://dl.pstm... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1051,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_robo3t | 492 | [
"permissive"
] | [
{
"path": "roles/install_robo3t/tasks/main.yml",
"content": "---\n- ansible.builtin.set_fact:\n robo3t_url: https://github.com/Studio3T/robomongo/releases/download/v1.4.4/robo3t-1.4.4-linux-x86_64-e6ac9ec.tar.gz\n\n- ansible.builtin.set_fact:\n robo3t_path: \"{{ robo3t_url | urlsplit('path') | basenam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 996,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_solaar | 492 | [
"permissive"
] | [
{
"path": "roles/install_solaar/tasks/main.yml",
"content": "---\n- name: Install solaar\n ansible.builtin.package:\n name: solaar\n state: present\n become: yes\n\n# - name: Copy icon\n# copy:\n# src: crostini-192.png\n# dest: /usr/share/icons/default/konsole.png\n# become: yes\n\n# - n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 942,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_teams | 492 | [
"permissive"
] | [
{
"path": "roles/install_teams/tasks/main.yml",
"content": "---\n- when: ansible_pkg_mgr == \"apt\"\n block:\n - name: Add repo\n ansible.builtin.apt:\n deb: https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb\n state: present\n become: yes\n ignore_e... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 561,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_terraform | 492 | [
"permissive"
] | [
{
"path": "roles/install_terraform/meta/main.yml",
"content": "---\ndependencies:\n - role: install_zsh\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 40
},
{
"path": "roles/install_terraform/tasks/main.yml",
"content": "- when: ansi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 710,
"all_permissive": true
} |
ansible_role | gabrgomes/penguin_setup | fffb6c44aecb8bc18fab1fbcd0274c49d20da0fa | 3 | roles/install_zsh | 492 | [
"permissive"
] | [
{
"path": "roles/install_zsh/templates/zshrc.j2",
"content": "# If you come from bash you might have to change your $PATH.\n# export PATH=$HOME/bin:/usr/local/bin:$PATH\nexport PATH=$HOME/bin:/usr/local/bin:$HOME/.local/bin:$PATH\n\n# Path to your oh-my-zsh installation.\nexport ZSH=\"{{ lookup('env','HOME'... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 6349,
"all_permissive": true
} |
ansible_role | marvinber/devops-challenge | 4eb353ce8470f100022567676ca579fe2b601d5b | 0 | install/roles/common | 492 | [
"no_license"
] | [
{
"path": "install/roles/common/tasks/main.yml",
"content": "---\n\n- name: Add unprivileged user \n ansible.builtin.user:\n name: \"{{ user }}\"\n shell: /bin/bash\n state: present\n create_home: yes\n\n- name: Add user to sudo\n lineinfile:\n path: /etc/sudoers.d/\"{{ user }}\"\n line:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 786,
"all_permissive": false
} |
ansible_role | marvinber/devops-challenge | 4eb353ce8470f100022567676ca579fe2b601d5b | 0 | install/roles/k3_master | 492 | [
"no_license"
] | [
{
"path": "install/roles/k3_master/tasks/main.yml",
"content": "---\n\n- name: Install service file\n register: k3s_service\n template:\n src: \"k3s.service.j2\"\n dest: \"{{ systemd_dir }}/k3s.service\"\n owner: root\n group: root\n mode: 0755\n \n- name: Enable and check K3s service\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1439,
"all_permissive": false
} |
ansible_role | marvinber/devops-challenge | 4eb353ce8470f100022567676ca579fe2b601d5b | 0 | install/roles/openfaas | 492 | [
"no_license"
] | [
{
"path": "install/roles/openfaas/tasks/main.yml",
"content": "---\n\n\n- name: Download latest arkade\n get_url:\n url: https://github.com/alexellis/arkade/releases/download/{{ arkade_version }}/arkade \n #checksum: sha256:https://github.com/alexellis/arkade/releases/download/{{ arkade_version }}/ar... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1403,
"all_permissive": false
} |
ansible_role | openshift-eng/aos-cd-jobs | 94564bc10daab36a0aaa7b5d4ad28c7695917f81 | 51 | hacks/cluster_cleanup/roles/reset_docker_storage | 492 | [
"permissive"
] | [
{
"path": "hacks/cluster_cleanup/roles/reset_docker_storage/defaults/main.yml",
"content": "---\nopenshift_local_volume_root: \"/var/lib/origin/openshift.local.volumes\"\n",
"license_type": "permissive",
"detected_licenses": [
"Apache-2.0"
],
"size_bytes": 75
},
{
"path": "hack... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1650,
"all_permissive": true
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/01_infos | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/01_infos/tasks/main.yaml",
"content": "---\n- name: What is my ansible_hostname\n debug:\n var: ansible_hostname\n\n- name: Update Ansible inventory with hostnames\n lineinfile:\n path: \"{{ inventory_dir }}/inventory\"\n regexp: '^{{ inventory_hostname }}'\n li... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1147,
"all_permissive": false
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/02_ssh-keys | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/02_ssh-keys/tasks/main.yaml",
"content": "---\n- name: Generate SSH keys\n shell: ssh-keygen -t rsa -b 4096 -f /root/.ssh/id_rsa -N \"\"\n args:\n creates: /root/.ssh/id_rsa.pub # This argument ensures the command is only executed if the public key doesn't exis\n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 847,
"all_permissive": false
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/03_percona-db-install | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/03_percona-db-install/tasks/main.yaml",
"content": "---\n- name: Download Percona XtraDB Cluster repository package\n get_url:\n url: https://repo.percona.com/apt/percona-release_latest.generic_all.deb\n dest: /tmp/percona-release_latest.generic_all.deb\n\n- name: Inst... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 4397,
"all_permissive": false
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/04_SSH-Keys-Exchange | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/04_SSH-Keys-Exchange/tasks/main.yaml",
"content": "- name: Fetch public key from the local machine\n become: yes\n shell: cat ~/.ssh/id_rsa.pub\n register: public_key_output\n\n- name: Add public key to authorized_keys on other servers\n become: yes\n authorized_key:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 389,
"all_permissive": false
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/05_unison-fs-install | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/05_unison-fs-install/tasks/main.yaml",
"content": "---\n\n- name: Uncomment and set StrictHostKeyChecking to no\n lineinfile:\n path: /etc/ssh/ssh_config\n regexp: '^#?\\s*StrictHostKeyChecking\\s+'\n line: 'StrictHostKeyChecking no'\n\n- name: Install Unison and op... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2317,
"all_permissive": false
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/06_php-wordpress-install | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/06_php-wordpress-install/handlers/main.yaml",
"content": "---\n- name: Restart Apache\n systemd:\n name: apache2\n state: restarted\n when: ansible_hostname == 'LB'",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 109
},
{
"pa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4728,
"all_permissive": false
} |
ansible_role | a1010s/wp-ha-setup | 68f56ba0d6ed2b1bed4d058ffeddd191e95ef116 | 0 | ansible-config/roles/07_stop-pub-nic | 492 | [
"no_license"
] | [
{
"path": "ansible-config/roles/07_stop-pub-nic/tasks/main.yaml",
"content": "---\n- name: Disable eth0 interface\n command: sudo ip link set eth0 down\n async: 300\n poll: 0\n ignore_errors: yes\n when: ansible_hostname != 'LB'\n \n- name: Wait for the interface to be disabled\n async_status:\n j... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 402,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/ansible_dev | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/ansible_dev/tasks/main.yml",
"content": "- name: Install ansible-lint\n become: true\n community.general.pacman:\n state: latest\n name: ansible-lint\n\n- name: Install VS Code extension\n ansible.builtin.command: code --install-extension {{ item }}\n with_items:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 290,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/bcsfe | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/bcsfe/vars/main.yml",
"content": "bcsfe_dir: ~/Documents/bcsfe\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "playbooks/roles/bcsfe/tasks/main.yml",
"content": "- name: Install packages\n become: true\n community... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 616,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/dotfiles | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/dotfiles/tasks/main.yml",
"content": "- name: Check if dotter is installed\n changed_when: false\n failed_when: false\n ansible.builtin.command: command -v dotter\n register: dotter_installed\n\n- name: Install dotter\n when: dotter_installed.rc != 0\n kewlfft.aur.aur:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 639,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/lts_kernel | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/lts_kernel/tasks/main.yml",
"content": "- name: Check current kernel\n ansible.builtin.command: uname -r\n register: kernel_version\n changed_when: false\n\n- name: Switch to LTS kernel\n when: \"'lts' not in kernel_version.stdout\"\n become: true\n block:\n - name: Check... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 891,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/packages | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/packages/vars/main.yml",
"content": "packages_to_install: \"{{ packages_add_common + packages_add_extra }}\"\npackages_to_remove: \"{{ packages_rem_common + packages_rem_extra }}\"\n\npackages_add_common:\n - falkon\n - fastfetch\n\npackages_rem_common: []\n\npackages_add_extra:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1592,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/stop_playbook | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/stop_playbook/tasks/main.yml",
"content": "- name: Stop the playbook execution\n ansible.builtin.meta: end_play\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 69
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 69,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/typst | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/typst/tasks/main.yml",
"content": "- name: Install typst\n become: true\n community.general.pacman:\n state: latest\n name:\n - rust\n - typst\n - typst-lsp\n\n- name: Install VS Code extension\n ansible.builtin.command: code --install-extension myriad-drea... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 270,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/vscode | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/vscode/vars/main.yml",
"content": "vscode_extensions:\n - bierner.markdown-footnotes\n - bierner.markdown-mermaid\n - eamodio.gitlens\n - editorconfig.editorconfig\n - redhat.vscode-yaml\n - tamasfe.even-better-toml\n - vscode-icons-team.vscode-icons\n - yzhang.markdown-al... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 968,
"all_permissive": false
} |
ansible_role | serkonda7/boxes | 4ed155666a7b3d5186f97f610d75b0a3dd2d7a49 | 1 | playbooks/roles/zsh | 492 | [
"no_license"
] | [
{
"path": "playbooks/roles/zsh/tasks/main.yml",
"content": "- name: Install zsh\n become: true\n community.general.pacman:\n state: latest\n name: zsh\n\n- name: Install antidote\n kewlfft.aur.aur:\n state: latest\n name: zsh-antidote\n\n- name: Get current shell\n ansible.builtin.shell: ech... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 659,
"all_permissive": false
} |
ansible_role | gaieges/grafana-mysql-monitoring | 55071b27ac66ada9a5998de19ea1b01f6b38eac2 | 12 | roles/mysql-metrics | 492 | [
"no_license"
] | [
{
"path": "roles/mysql-metrics/meta/main.yml",
"content": "galaxy_info:\n author: <NAME>\n description: Mysql with Grafana monitoring setup\n company: Napsty, LLC\n\n # If the issue tracker for your role is not on github, uncomment the\n # next line and provide a value\n # issue_tracker_url: http://ex... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3025,
"all_permissive": false
} |
ansible_role | jk84reg/dz-9 | 479fdf2dd084f6591ba2b618821ac0cf1bba9a8f | 0 | roles/build | 492 | [
"no_license"
] | [
{
"path": "roles/build/vars/main.yml",
"content": "---\n# vars file for build\n\nboxfuse_path: /tmp/boxfuse\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 54
},
{
"path": "roles/build/tasks/main.yml",
"content": "---\n# tasks file for build\n\n- name: Clone ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 545,
"all_permissive": false
} |
ansible_role | jk84reg/dz-9 | 479fdf2dd084f6591ba2b618821ac0cf1bba9a8f | 0 | roles/environment | 492 | [
"no_license"
] | [
{
"path": "roles/environment/tasks/main.yml",
"content": "---\n# tasks file for environment\n\n- name: Update apt\n apt: update_cache=yes\n\n- name: Ensure default-jdk & git packedge is present\n apt: name={{item}} state=present\n with_items:\n - default-jdk\n - git\n",
"license_type": "no_lice... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 208,
"all_permissive": false
} |
ansible_role | jk84reg/dz-9 | 479fdf2dd084f6591ba2b618821ac0cf1bba9a8f | 0 | roles/maven | 492 | [
"no_license"
] | [
{
"path": "roles/maven/tasks/main.yml",
"content": "---\n# tasks file for maven\n\n- name: Update apt\n apt: update_cache=yes\n\n- name: Ensure maven packedge is present\n apt: name={{item}} state=present\n with_items:\n - maven\n",
"license_type": "no_license",
"detected_licenses": [],
"s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 174,
"all_permissive": false
} |
ansible_role | jk84reg/dz-9 | 479fdf2dd084f6591ba2b618821ac0cf1bba9a8f | 0 | roles/webserver | 492 | [
"no_license"
] | [
{
"path": "roles/webserver/vars/main.yml",
"content": "---\n# vars file for webserver\n\ntomcat_webapps_path: /var/lib/tomcat9/webapps/\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 78
},
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n# tasks ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 458,
"all_permissive": false
} |
ansible_role | tier4/data_recording_system | 2b67715e6e784ab0f08a331b8919f482b1080d26 | 4 | ansible/roles/add_user_to_group | 492 | [
"permissive"
] | [
{
"path": "ansible/roles/add_user_to_group/tasks/main.yaml",
"content": "- name: add user to targe groups one by one\n include_tasks: add_user_to_group.yaml\n with_items: \"{{ target_groups }}\"\n loop_control:\n loop_var: target_group\n",
"license_type": "permissive",
"detected_licenses": [
... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 443,
"all_permissive": true
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.