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 | aramirol/ansible-labs | 6000f8e95c62a54c6166b2aa99bb221aebbc6be3 | 0 | 09.roles/roles/owncloud | 7,755 | [
"no_license"
] | [
{
"path": "09.roles/roles/owncloud/defaults/main.yml",
"content": "---\n# defaults file for owncloud\n\npkg:\n - apache2\n - libapache2-mod-php\n - mariadb-server\n - openssl\n - php-imagick \n - php-common \n - php-curl\n - php-gd \n - php-imap \n - php-intl\n - php-json \n - php-mbstring \n -... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1297,
"all_permissive": false
} |
ansible_role | rabellamy/ansible-config-example | 7fc350927c0c03c870669ee9346cceef0bc873b2 | 0 | provisioning/roles/common | 7,755 | [
"no_license"
] | [
{
"path": "provisioning/roles/common/vars/main.yml",
"content": "---\ncommon_apt_packages:\n - python-apt\n - python-pycurl\n - python-software-properties\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 89
},
{
"path": "provisioning/roles/common/tasks/main.yml... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 279,
"all_permissive": false
} |
ansible_role | rabellamy/ansible-config-example | 7fc350927c0c03c870669ee9346cceef0bc873b2 | 0 | provisioning/roles/user | 7,755 | [
"no_license"
] | [
{
"path": "provisioning/roles/user/defaults/main.yml",
"content": "---\n users:\n - username: rabellamy\n type: admin\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "provisioning/roles/user/tasks/main.yml",
"content": ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 476,
"all_permissive": false
} |
ansible_role | remipassmoilesel/ansible-workshop | e5fe6ba4fa9a44453751c2b5d2a4b700e36339d6 | 0 | playbooks/roles/install-yum-package | 7,755 | [
"no_license"
] | [
{
"path": "playbooks/roles/install-yum-package/tasks/main.yml",
"content": "\n# Installer un package avec yum\n- name: \"Install a single package\"\n yum:\n name: epel-release # Epel-release est un repository Centos contenant plein de super packages\n state: installed\n\n# Installer plusieurs pack... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 576,
"all_permissive": false
} |
ansible_role | remipassmoilesel/ansible-workshop | e5fe6ba4fa9a44453751c2b5d2a4b700e36339d6 | 0 | playbooks/roles/misc-modules | 7,755 | [
"no_license"
] | [
{
"path": "playbooks/roles/misc-modules/tasks/main.yml",
"content": "\n# Il y a un million de module ansible disponible, par exemple:\n\n# Démarrer (ou redémarrer) un service systemd\n- name: \"Enable systemd service \"\n systemd:\n name: chronyd\n state: started\n enabled: yes\n\n# Créer un utili... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 912,
"all_permissive": false
} |
ansible_role | remipassmoilesel/ansible-workshop | e5fe6ba4fa9a44453751c2b5d2a4b700e36339d6 | 0 | playbooks/roles/modify-configuration | 7,755 | [
"no_license"
] | [
{
"path": "playbooks/roles/modify-configuration/tasks/main.yml",
"content": "\n- name: \"Change one single line\"\n lineinfile: # Ici on modifie une ligne de configuration existante\n path: /opt/awesome-configuration.conf\n regexp: \"#? *FEATURE.+\" # Cette r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 597,
"all_permissive": false
} |
ansible_role | remipassmoilesel/ansible-workshop | e5fe6ba4fa9a44453751c2b5d2a4b700e36339d6 | 0 | playbooks/roles/template-configuration | 7,755 | [
"no_license"
] | [
{
"path": "playbooks/roles/template-configuration/tasks/main.yml",
"content": "\n# Ici on copie le fichier local situé dans templates/ sur la machine distante\n# Et ansible modifiera ce fichier en fonction des caratéristiques du groupe,\n# de la machine, etc\n- name: \"Template configuration\"\n template:\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 439,
"all_permissive": false
} |
ansible_role | vidyadivu/Devops-projects | d863105d9cef5fdfe81bde4259f0f6e64e411ad6 | 0 | Ansible/LAMPSetup/roles/db | 7,759 | [
"no_license"
] | [
{
"path": "Ansible/LAMPSetup/roles/db/tasks/main.yml",
"content": "---\r\n# This playbook will install mysql and create db user and give permissions.\r\n\r\n- name: Install mariadb package\r\n yum: name={{ item }} state=installed\r\n with_items:\r\n # - mysql-server\r\n - mariadb-server\r\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 714,
"all_permissive": false
} |
ansible_role | vidyadivu/Devops-projects | d863105d9cef5fdfe81bde4259f0f6e64e411ad6 | 0 | Ansible/buildsetup/roles/aws | 7,759 | [
"no_license"
] | [
{
"path": "Ansible/buildsetup/roles/aws/tasks/main.yml",
"content": " - name: Install python-pip library # prerequisite for ubuntu machines #\r\n apt: name='{{item}}'\r\n with_items:\r\n - python3-pip\r\n - python-dev\r\n tags:\r\n - s3\r\n - name: Install python-boto library\r\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 704,
"all_permissive": false
} |
ansible_role | vidyadivu/Devops-projects | d863105d9cef5fdfe81bde4259f0f6e64e411ad6 | 0 | Ansible/buildsetup/roles/awscli | 7,759 | [
"no_license"
] | [
{
"path": "Ansible/buildsetup/roles/awscli/tasks/main.yml",
"content": "---\r\n- name: Install Python PIP\r\n apt: pkg=python3-pip state=latest\r\n\r\n- name: Install boto via PIP\r\n pip: name=boto state=latest\r\n\r\n- name: Install AWS CLI\r\n pip: name=awscli state=latest\r\n\r\n- name: Install JQ\r\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 245,
"all_permissive": false
} |
ansible_role | vidyadivu/Devops-projects | d863105d9cef5fdfe81bde4259f0f6e64e411ad6 | 0 | Ansible/buildsetup/roles/maven | 7,759 | [
"no_license"
] | [
{
"path": "Ansible/buildsetup/roles/maven/tasks/main.yml",
"content": " - name: Apt Update\r\n apt: update_cache=yes\r\n - name : Install JDK & Git\r\n apt: name={{item}} state=present\r\n with_items:\r\n - openjdk-8-jdk\r\n - git\r\n - name: Check & create downloads dir\r\n file:\r\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1529,
"all_permissive": false
} |
ansible_role | dotuanson/ansible-playbook | 0321bdb8cdcc9af1051f420ed554cd8477e2fcab | 1 | roles/postgres-citus-all | 7,759 | [
"no_license"
] | [
{
"path": "roles/postgres-citus-all/tasks/main.yml",
"content": "- name: Install aptitude\n become: true\n apt:\n name: aptitude\n state: latest\n update_cache: true\n\n- name: Update aptitude\n shell:\n cmd: apt update -y\n\n- name: Add citus repository\n shell:\n cmd: \"curl https://ins... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 832,
"all_permissive": false
} |
ansible_role | dotuanson/ansible-playbook | 0321bdb8cdcc9af1051f420ed554cd8477e2fcab | 1 | roles/postgres-citus-coordinator | 7,759 | [
"no_license"
] | [
{
"path": "roles/postgres-citus-coordinator/tasks/main.yml",
"content": "- name: Add worker node 1 information\n shell:\n cmd: sudo -i -u postgres psql -c \"SELECT citus_set_coordinator_host('{{ postgres_worker_01_host }}', 5432);\"\n\n- name: Add worker node 2 information\n shell:\n cmd: sudo -i -u... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 467,
"all_permissive": false
} |
ansible_role | kameshsampath/ansible_k8s | 9b5dffe35775266fcf0c06a74cb0e74483748475 | 0 | tests/roles/test_configs | 7,759 | [
"no_license"
] | [
{
"path": "tests/roles/test_configs/tasks/main.yml",
"content": "---\n## etcd\n- name: etcd configure listen client urls\n lineinfile:\n regexp: '(^ETCD_LISTEN_CLIENT_URLS=)(.*)'\n line: '\\1\"http://0.0.0.0:2379\"'\n backrefs: yes\n dest: \"{{role_path}}/files/etcd.conf\"\n backup: yes\n\n-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1266,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/docker | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/docker/tasks/main.yml",
"content": "---\n- name: Pip installed\n apt:\n name: python3-pip\n state: present\n- name: apt-transport-https installed\n apt:\n name: apt-transport-https\n state: present\n- name: ca-certificates installed\n apt:\n name: ca-ce... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1718,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/evevulcan | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/evevulcan/tasks/main.yml",
"content": "---\n- include_vars:\n file: secrets.yml\n- name: Eve Industry - Run container\n community.docker.docker_container:\n name: evevulcan\n image: normegil/evevulcan:latest\n restart_policy: always\n ports:\n - \"18... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 577,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/firewall | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/firewall/tasks/main.yml",
"content": "---\n- name: Allow SSH incoming Connection\n community.general.ufw:\n rule: allow\n name: OpenSSH\n- name: Allow Outgoing\n community.general.ufw:\n rule: allow\n direction: out\n- name: Deny Incoming\n community.gener... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 331,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/prometheus_node_exporter | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/prometheus_node_exporter/tasks/main.yml",
"content": "---\n- name: Download node exporter\n get_url:\n url: https://github.com/prometheus/node_exporter/releases/download/v1.1.2/node_exporter-1.1.2.linux-amd64.tar.gz\n dest: /opt/node_exporter-1.1.2.linux-amd64.tar... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 903,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/promtail | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/promtail/tasks/main.yml",
"content": "---\n- include_vars: \n file: secrets.yml\n- name: Promtail - Configuration - Directory exist\n file:\n path: /etc/promtail\n state: directory\n- name: Promtail - Configuration - Copy file\n template:\n src: \"{{ role_p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1771,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/reverse_proxy | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/reverse_proxy/tasks/main.yml",
"content": "---\n- name: Copy nginx source.list\n copy:\n src: \"{{ role_path }}/files/nginx.list\"\n dest: \"/etc/apt/sources.list.d/nginx.list\"\n register: nginx_sources_list\n- name: Key Server present\n apt_key:\n keyserver... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2038,
"all_permissive": false
} |
ansible_role | normegil/evevulcan | 376fd9ecdd0111be72c6a27bb3385dda1658dcee | 0 | .deployment/ansible/roles/reverse_proxy_configure | 7,759 | [
"no_license"
] | [
{
"path": ".deployment/ansible/roles/reverse_proxy_configure/tasks/main.yml",
"content": "---\n- name: Check configuration existence\n stat:\n path: \"/etc/nginx/conf.d/{{ conf_name }}\"\n register: conf\n- name: Copy nginx configuration\n template:\n src: \"{{ local_path_to_conf }}/{{ conf_name }}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 457,
"all_permissive": false
} |
ansible_role | jpklzm/youtube-audio-dl | b427d9dc9f22e5f8d28ede769216ceee83dc6505 | 4 | ansible/roles/base | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/base/tasks/main.yml",
"content": "---\n\n- name: Ensure bash, OpenSSl, and libssl are the latest versions\n apt: name={{ item }} update_cache={{ update_apt_cache }} state=latest\n with_items:\n - bash\n - openssl\n - libssl-dev\n - libssl-doc\n tags: packages\n\n- nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 594,
"all_permissive": false
} |
ansible_role | jpklzm/youtube-audio-dl | b427d9dc9f22e5f8d28ede769216ceee83dc6505 | 4 | ansible/roles/celery | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/celery/tasks/main.yml",
"content": "---\n\n- include: copy_scripts.yml\n\n- include: setup_supervisor.yml\n\n- name: Check running applications managed by supervisor\n shell: supervisorctl status\n register: supervisor_applications\n tags:\n - celery\n - celerycam\n - de... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 5477,
"all_permissive": false
} |
ansible_role | jpklzm/youtube-audio-dl | b427d9dc9f22e5f8d28ede769216ceee83dc6505 | 4 | ansible/roles/web | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/web/tasks/setup_cron_jobs.yml",
"content": "---\n\n- name: Ensure that an hourly Twitter auto-follow job exists\n cron: name=\"hourly twitter auto-follow\"\n special_time=hourly\n user={{ gunicorn_user }}\n job=\"bash {{ project_path }}/scripts/run_twitter_auto... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2363,
"all_permissive": false
} |
ansible_role | ebruskokos/work | 806f7365f948d072ced3d5725a82bf73e8e79de5 | 0 | roles/docker | 7,759 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "- name: Update the apt package index\n apt: \n update_cache: yes\n state: latest\n\n- name: install packages to allow apt to use a repository over HTTPS\n apt: name={{ item }} state=latest\n loop:\n - ca-certificates\n - curl\n - gnupg ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 904,
"all_permissive": false
} |
ansible_role | ebruskokos/work | 806f7365f948d072ced3d5725a82bf73e8e79de5 | 0 | roles/nginx | 7,759 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": " - name: update package\n apt:\n update_cache: yes\n state: latest\n \n - name: install nginx\n apt:\n name: nginx\n state: latest\n # - name: Uninstall Nginx\n # apt:\n # name: nginx\n #... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 474,
"all_permissive": false
} |
ansible_role | ebruskokos/work | 806f7365f948d072ced3d5725a82bf73e8e79de5 | 0 | roles/tomcat | 7,759 | [
"no_license"
] | [
{
"path": "roles/tomcat/tasks/main.yml",
"content": "# \n\n - name: Download Open JDK\n apt:\n name: openjdk-8-jre-headless\n update_cache: yes\n state: present\n \n - name: Create the group\n group: \n name: tomcat\n state: present\n\n - name: Create the user\n user:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2099,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/calico | 7,759 | [
"no_license"
] | [
{
"path": "roles/calico/tasks/main.yaml",
"content": "---\n- name: Install Tigera Operator\n shell: \". ~/.bashrc && kubectl create -f https://docs.projectcalico.org/manifests/tigera-operator.yaml\"\n\n- name: Download Calico installation resource\n get_url:\n url: https://docs.projectcalico.org/manife... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 713,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/cert-manager | 7,759 | [
"no_license"
] | [
{
"path": "roles/cert-manager/tasks/main.yaml",
"content": "---\n- name: Install cert-manager\n shell: . ~/.bashrc && kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.1.0/cert-manager.yaml\n\n- name: Wait for pods to become ready\n shell: . ~/.bashrc && kubectl wait --for=con... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 655,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/dashboard | 7,759 | [
"no_license"
] | [
{
"path": "roles/dashboard/tasks/main.yaml",
"content": "---\n- name: Install dashboard\n shell: . ~/.bashrc && kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.1.0/aio/deploy/recommended.yaml\n\n- name: Copy configuration files\n copy:\n src: ./\n dest: /tmp/\n\n- name: Cr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 438,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/docker | 7,759 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yaml",
"content": "---\n- name: Install prerequisites\n apt:\n update_cache: yes\n pkg:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg-agent\n - software-properties-common\n\n- name: Add gpg key\n apt_key:\n url: https://download.d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 982,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/ingress-controller | 7,759 | [
"no_license"
] | [
{
"path": "roles/ingress-controller/tasks/main.yaml",
"content": "---\n- name: Copy deployment configuration\n copy:\n src: deploy.yaml\n dest: /tmp/deploy.yaml\n\n- name: Deploy Nginx Ingress Controller\n shell: . ~/.bashrc && kubectl apply -f /tmp/deploy.yaml\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 197,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/kubeadm | 7,759 | [
"no_license"
] | [
{
"path": "roles/kubeadm/tasks/install.yaml",
"content": "---\n- name: Add gpg key\n apt_key:\n url: https://packages.cloud.google.com/apt/doc/apt-key.gpg\n state: present\n\n- name: Add apt source\n copy:\n src: apt-source\n dest: /etc/apt/sources.list.d/kubernetes.list\n\n- name: Install kub... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 943,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/metallb | 7,759 | [
"no_license"
] | [
{
"path": "roles/metallb/tasks/install.yaml",
"content": "---\n- shell: . ~/.bashrc && kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.9.5/manifests/namespace.yaml\n\n- shell: . ~/.bashrc && kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.9.5/manifests/metallb.yam... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 880,
"all_permissive": false
} |
ansible_role | avelizmu/ansible-kubernetes | cae08467a06e289ea2745cc36856aa116f1de073 | 0 | roles/metrics | 7,759 | [
"no_license"
] | [
{
"path": "roles/metrics/tasks/main.yaml",
"content": "---\n- name: Copy configuration file\n copy:\n src: metrics.yaml\n dest: /tmp/metrics.yaml\n\n- name: Install metrics-server\n shell: . ~/.bashrc && kubectl apply -f /tmp/metrics.yaml\n",
"license_type": "no_license",
"detected_licenses"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 185,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/composer | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/composer/tasks/main.yml",
"content": "- name: install\n shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin\n args:\n creates: \"/usr/local/bin/composer\"\n- name: rename - composer.phar -> composer\n command: mv /usr/local/bin/composer.phar... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 426,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/init | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/init/tasks/main.yml",
"content": "#- name: Run apt-get update\n# apt:\n# update_cache: yes\n# cache_valid_time: 86400\n# become: yes\n#- name: Install git\n# apt:\n# name: git\n# state: present\n#- name: Create www-user with ssh keys\n# user:\n# name: \"{{www_user... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 944,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/js | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/js/tasks/main.yml",
"content": "- name: Install nodejs and npm\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - nodejs\n - npm\n- name: Link nodejs executable to node which is used by grunt\n file:\n src: /usr/bin/nodejs\n dest: /usr/bin/node\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 252,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/locale | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/locale/tasks/main.yml",
"content": "- name: Install locale\n locale_gen:\n name: \"{{ default_locale }}\"\n state: present\n notify:\n - rebuild locales database\n- name: Select default locale\n debconf:\n name: locales\n question: locales/default_environment_local... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 611,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/magentoDevTools | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/magentoDevTools/tasks/main.yml",
"content": "- name: Install DevTools using composer\n composer:\n command: require\n arguments: msp/devtools\n no_dev: no\n working_dir: \"{{ app_base_path }}\"\n become: yes\n become_user: \"{{ www_user }}\"\n- name: Flush cache by ma... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1519,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/magentoInstall | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/magentoInstall/templates/magento.local.conf.j2",
"content": "upstream fastcgi_backend {\n server unix:{{ fpm_path }};\n }\n\n server {\n listen 80;\n server_name {{ app_hostname }};\n\n access_log {{ app_access_log }};\n error_log {{ app_error_log }};\n\n se... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4717,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/magentoSampleData | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/magentoSampleData/handlers/main.yml",
"content": "- name: restartNginx\n service:\n name: nginx\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 69
},
{
"path": "ansible/roles/magentoSampleData/tasks/main.yml",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 501,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/magentoUpdate | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/magentoUpdate/tasks/main.yml",
"content": "- name: Update project dependencies by composer\n composer:\n command: update\n no_dev: no\n working_dir: \"{{ app_base_path }}\"\n become: yes\n become_user: \"{{ www_user }}\"\n- name: Change files permissions\n command: \"fi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2397,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/mysql | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/mysql/tasks/main.yml",
"content": "- name: Ensure that MySQL is installed\n apt:\n name: '{{ item }}'\n state: present\n with_items:\n - mysql-server\n - python3-mysqldb\n- name: Ensure that MySQL is started and enabled\n service:\n name: mysql\n state: started\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 614,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/nfs | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/nfs/tasks/main.yml",
"content": "- name: Install NFS Server\n apt:\n name: \"{{item}}\"\n state: present\n with_items:\n - nfs-common\n - nfs-kernel-server\n- name: \"Get ID of group {{ www_group }}\"\n group:\n name: \"{{ www_group }}\"\n state: present\n regist... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 493,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/phpmyadmin | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/phpmyadmin/tasks/main.yml",
"content": "- name: Install phpmyadmin debconf 1\n debconf:\n name: phpmyadmin\n question: 'phpmyadmin/dbconfig-install'\n value: 'true'\n vtype: 'boolean'\n- name: Install phpmyadmin debconf 2\n debconf:\n name: phpmyadmin\n question:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1514,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/webserver | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/webserver/tasks/main.yml",
"content": "- name: Install the Nginx web server\n apt:\n name: nginx\n state: present\n- name: Ensure that Nginx is started and enabled on system boot\n service:\n name: nginx\n state: started\n enabled: yes\n- name: Add apt repository fo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2353,
"all_permissive": false
} |
ansible_role | marcin-dzdza/magento-2-environment | a6d90cf86a7af417150aaeeaca89a1342f8123a0 | 0 | ansible/roles/xdebug | 7,759 | [
"no_license"
] | [
{
"path": "ansible/roles/xdebug/tasks/main.yml",
"content": "- name: Install php xdebug extension\n apt:\n name: \"php{{ php_version }}-xdebug\"\n state: present\n register: xdebugInstalled\n notify: restartNginx\n- name: Configure xdebug for CLI and FPM\n lineinfile:\n dest: \"{{ item[0] }}\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1214,
"all_permissive": false
} |
ansible_role | OleksandrMakarov/makarov-ansible-synopsis | ac7c8ebc21eafd0844c0bebe726864cac469c49a | 0 | roles/deploy_apache_web | 7,759 | [
"no_license"
] | [
{
"path": "roles/deploy_apache_web/defaults/main.yml",
"content": "---\n# defaults file for deploy_apache_web\n\ndestination_folder: /var/www/html",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "roles/deploy_apache_web/tasks/main.yml",
"content... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2480,
"all_permissive": false
} |
ansible_role | 0dadj1an/pynet | 7c72955f7cd2ed90bf8aa75a67c67044dd4ae8e3 | 1 | ansible/ex1/roles/router | 7,759 | [
"permissive"
] | [
{
"path": "ansible/ex1/roles/router/vars/main.yml",
"content": "---\ntest_routers:\n - {hostname: router1, ip_addr: 1.1.1.1, default_gw: 192.168.3.11, access_vlan: 100, snmp_community: PUBLIC, secret: ahoj }\n - {hostname: router2, ip_addr: 2.1.1.1, default_gw: 172.16.31.10, access_vlan: 200, snmp_community... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 819,
"all_permissive": true
} |
ansible_role | 0dadj1an/pynet | 7c72955f7cd2ed90bf8aa75a67c67044dd4ae8e3 | 1 | ansible/ex2/roles/router | 7,759 | [
"permissive"
] | [
{
"path": "ansible/ex2/roles/router/vars/main.yml",
"content": "---\ntest_routers:\n - {hostname: router1, ip_addr: 1.1.1.1, default_gw: 192.168.3.11, access_vlan: 100, snmp_community: PUBLIC, secret: ahoj, SNMPv3: True }\n - {hostname: router2, ip_addr: 2.1.1.1, default_gw: 172.16.58.3, access_vlan: 200, s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 887,
"all_permissive": true
} |
ansible_role | 0dadj1an/pynet | 7c72955f7cd2ed90bf8aa75a67c67044dd4ae8e3 | 1 | ansible/ex3/roles/router | 7,759 | [
"permissive"
] | [
{
"path": "ansible/ex3/roles/router/tasks/main.yml",
"content": "---\n- name: Generate conf file\n template: src=access_switch.j2 dest=/home/ihrbacek/github/pynet/ansible/ex3/{{item.hostname}}.txt\n with_items: \"{{test_routers}}\"\n",
"license_type": "permissive",
"detected_licenses": [
"Ap... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 164,
"all_permissive": true
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/certificates | 7,757 | [
"no_license"
] | [
{
"path": "roles/certificates/tasks/main.yml",
"content": "- name: Generate inventory-specific certificate directory name\n ansible.builtin.set_fact:\n inventory_name: \"{{ ansible_inventory_sources[0] | basename | regex_replace('\\\\.(ini|yml|yaml)$', '') }}\"\n\n- name: Create inventory-specific certi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 5786,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/etcd | 7,757 | [
"no_license"
] | [
{
"path": "roles/etcd/handlers/main.yml",
"content": "---\n# handlers file for etcd-cluster\n\n# Restart masters one-by-one to keep quorum\n- name: Restart etcd masters\n become: true\n become_user: root\n when: etcd_launch | bool\n ansible.builtin.service:\n name: etcd-tantor\n state: restarted\n... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 12498,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/haproxy | 7,757 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yml",
"content": "- name: Install haproxy-tantor-all (RHEL-like systems)\n when: ansible_os_family in [\"RED\", \"Centos\", \"Rocky\", \"RedHat\"]\n ansible.builtin.yum:\n name: >-\n {{\n 'haproxy-tantor-all-' + haproxy_package_version\n if haproxy... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 6329,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/keepalived | 7,757 | [
"no_license"
] | [
{
"path": "roles/keepalived/handlers/main.yml",
"content": "---\n\n- name: Restart keepalived-tantor service\n ansible.builtin.systemd_service:\n daemon_reload: true\n name: keepalived-tantor\n enabled: true\n state: restarted\n listen: \"restart keepalived\"\n",
"license_type": "no_licens... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6373,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/patroni | 7,757 | [
"no_license"
] | [
{
"path": "roles/patroni/templates/walg.json.j2",
"content": "#jinja2: lstrip_blocks: True, trim_blocks: True\n\n{% if patroni_boostrap_method_walg_storage == 's3' %}\n{\n{% if postgresql_vendor == 'tantordb' %}\n \"PGDATA\": \"{{ patroni_pg_data_dir }}\",\n{% elif postgresql_vendor == 'classic' and ( ansi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 34982,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/pgbouncer | 7,757 | [
"no_license"
] | [
{
"path": "roles/pgbouncer/templates/pgbouncer.ini.j2",
"content": "[databases]\n* = host=127.0.0.1 port={{ patroni_pg_port }} auth_user={{ pgbouncer_auth_user }}\n\n[pgbouncer]\nlogfile = {{ pgbouncer_log_file }}\npidfile = {{ pgbouncer_pid_file }}\n\nlisten_addr = 127.0.0.1,{{ pgbouncer_incoming_hosts }}\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 6724,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/postgres_classic | 7,757 | [
"no_license"
] | [
{
"path": "roles/postgres_classic/tasks/main.yml",
"content": "---\r\n\r\n- name: Populate service facts\r\n ansible.builtin.service_facts:\r\n\r\n- name: Installation block\r\n when: postgresql_vendor == 'classic'\r\n block:\r\n - name: Prerequisite block\r\n block:\r\n - name: Add Epel r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 9549,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/postgres_tantordb | 7,757 | [
"no_license"
] | [
{
"path": "roles/postgres_tantordb/tasks/main.yml",
"content": "---\r\n\r\n- name: Install tantor-server\r\n ansible.builtin.package:\r\n name: \"tantor-{{ edition | d('be', true) }}-server-{{ major_version | d('16', true) }}\"\r\n state: present\r\n when: postgresql_vendor == 'tantordb'\r\n",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 221,
"all_permissive": false
} |
ansible_role | TantorLabs/pg_cluster | 4e3f6c5a237d9164daf92b188e44d5d0bf83ea70 | 15 | roles/prepare_nodes | 7,757 | [
"no_license"
] | [
{
"path": "roles/prepare_nodes/handlers/main.yml",
"content": "---\n\n- name: Restart chronyd\n ansible.builtin.systemd_service:\n name: chronyd\n state: restarted\n enabled: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 121
},
{
"path": "roles/p... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 6995,
"all_permissive": false
} |
ansible_role | sthirugn/dolly | 0ec9c40d4ac34b44b4421abf9bbf943ce92d248c | 0 | roles/setup | 7,757 | [
"no_license"
] | [
{
"path": "roles/setup/tasks/main.yml",
"content": "- name: Check that mandatory variables are updated\n fail: msg=\"Please update the variables in satellite-clone-vars.yml (after copying satellite-clone-vars.sample.yml)\"\n when: (public_backup_dir == \"changeme\") or (pr_number == \"changeme\")\n\n- nam... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2545,
"all_permissive": false
} |
ansible_role | sthirugn/dolly | 0ec9c40d4ac34b44b4421abf9bbf943ce92d248c | 0 | roles/test-clone | 7,757 | [
"no_license"
] | [
{
"path": "roles/test-clone/tasks/main.yml",
"content": "- name: run satellite-clone playbook\n command: ansible-playbook -i inventory satellite-clone-playbook.yml\n args:\n chdir: /satellite-clone\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 143
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 143,
"all_permissive": false
} |
ansible_role | aleefbasha123/expense-ansible-role | 181404c90f571466783549f4706351241d2f144a | 0 | roles/common | 7,757 | [
"no_license"
] | [
{
"path": "roles/common/tasks/app-pre-req.yaml",
"content": "- name: delete app directory\n ansible.builtin.file:\n path: \"{{ app_location }}\"\n state: absent\n ignore_errors: yes\n\n- name: create app directory\n ansible.builtin.file:\n path: \"{{ app_location }}\"\n state: directory\n\n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 559,
"all_permissive": false
} |
ansible_role | nergalex/f5-autoscale-azure | a6e715c1aed98b67270cf59fb1ea68e5a795beca | 0 | playbooks/roles/poc-azure | 7,757 | [
"no_license"
] | [
{
"path": "playbooks/roles/poc-azure/tasks/create-vmss-nginx-2NIC_2LB.yaml",
"content": "---\n- name: CREATE a Virtual Machine Scale Set\n delegate_to: localhost\n azure_rm_virtualmachinescaleset_2NIC:\n resource_group: \"rg-{{ extra_platform_name }}\"\n name: \"{{ extra_vmss_name }}\"\n location... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 35550,
"all_permissive": false
} |
ansible_role | nergalex/f5-autoscale-azure | a6e715c1aed98b67270cf59fb1ea68e5a795beca | 0 | playbooks/roles/poc-f5 | 7,757 | [
"no_license"
] | [
{
"path": "playbooks/roles/poc-f5/tasks/bigiq_discover_scale_in.yaml",
"content": "---\n- import_role:\n name: f5devcentral.f5ansible\n\n- name: Discover a device and import config\n delegate_to: localhost\n bigiq_device_discovery:\n state: absent\n device_address: \"{{ item.management }}\"\n ... | {
"task_files": 11,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 15,
"total_bytes": 37658,
"all_permissive": false
} |
ansible_role | nergalex/f5-autoscale-azure | a6e715c1aed98b67270cf59fb1ea68e5a795beca | 0 | playbooks/roles/poc-nginx | 7,757 | [
"no_license"
] | [
{
"path": "playbooks/roles/poc-nginx/tasks/managed_nginx.yaml",
"content": "---\n- name: INSTALL package\n package:\n name: policycoreutils-python\n state: present\n\n- name: CREATE install directory\n file:\n path: /root/nginx-controller\n state: directory\n\n- name: CREATE self-registerd ins... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4431,
"all_permissive": false
} |
ansible_role | nergalex/f5-autoscale-azure | a6e715c1aed98b67270cf59fb1ea68e5a795beca | 0 | playbooks/roles/poc-nginx_controller | 7,757 | [
"no_license"
] | [
{
"path": "playbooks/roles/poc-nginx_controller/templates/component_adc.json",
"content": "{\n \"metadata\": {\n \"name\": \"adc_{{ item.name | lower }}\",\n \"displayName\": \"{{ item.name | lower }} - ADC\",\n \"description\": \"Generated by CMP\"\n },\n \"desiredState\": {\n \"ingress\": {... | {
"task_files": 8,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 17342,
"all_permissive": false
} |
ansible_role | shien/makedevenv | e11a2fcf4064accffd36140c308b513506b22890 | 0 | ubuntu/roles/common | 7,757 | [
"no_license"
] | [
{
"path": "ubuntu/roles/common/templates/devuser.j2",
"content": "{{ dev_user }} ALL=NOPASSWD: ALL\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "ubuntu/roles/common/tasks/main.yml",
"content": "- name: change git editor\n command: git con... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 436,
"all_permissive": false
} |
ansible_role | shien/makedevenv | e11a2fcf4064accffd36140c308b513506b22890 | 0 | ubuntu/roles/docker | 7,757 | [
"no_license"
] | [
{
"path": "ubuntu/roles/docker/tasks/main.yml",
"content": "- name: install curl\n package:\n name: curl\n state: present\n become: yes\n\n- name: install apt-transport-https\n package:\n name: apt-transport-https\n state: present\n become: yes\n\n- name: install software-properties-common\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 792,
"all_permissive": false
} |
ansible_role | shien/makedevenv | e11a2fcf4064accffd36140c308b513506b22890 | 0 | ubuntu/roles/golang | 7,757 | [
"no_license"
] | [
{
"path": "ubuntu/roles/golang/tasks/main.yml",
"content": "- name: make directory for go\n file:\n path: /home/{{ dev_user }}/go{{ go_version }}\n state: directory\n mode: 0755\n\n- name: check directory exists\n stat:\n path: /home/{{ dev_user }}/go{{ go_version }}\n register: gv\n\n- name:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 758,
"all_permissive": false
} |
ansible_role | shien/makedevenv | e11a2fcf4064accffd36140c308b513506b22890 | 0 | ubuntu/roles/tmux | 7,757 | [
"no_license"
] | [
{
"path": "ubuntu/roles/tmux/tasks/main.yml",
"content": "- name: install tmux\n package:\n name: tmux\n state: present\n become: yes\n\n- name: copy tmux conf\n copy:\n src: tmux.conf\n dest: /home/{{ dev_user }}/.tmux.conf\n owner: \"{{ dev_user }}\"\n group: \"{{ dev_user }}\"\n m... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 244,
"all_permissive": false
} |
ansible_role | shien/makedevenv | e11a2fcf4064accffd36140c308b513506b22890 | 0 | ubuntu/roles/vim | 7,757 | [
"no_license"
] | [
{
"path": "ubuntu/roles/vim/tasks/main.yml",
"content": "---\n- name: install vim\n package:\n name: vim\n state: present\n become: yes\n\n- name: copy vimrc\n template:\n src: vimrc.j2\n dest: /home/{{ dev_user }}/.vimrc\n owner: \"{{ dev_user }}\"\n group: \"{{ dev_user }}\"\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1785,
"all_permissive": false
} |
ansible_role | Evahhhh/Docker | b46f37c8c5a8155254a7ee163d4c032110036316 | 0 | roles/project_manager | 7,757 | [
"no_license"
] | [
{
"path": "roles/project_manager/tasks/main.yml",
"content": "- name: Créer le répertoire site1\n file:\n path: /opt/site1\n state: directory\n\n- name: Copier le docker-compose pour site1\n copy:\n src: \"{{ playbook_dir }}/../projects/site1/docker-compose.yml\"\n dest: /opt/site1/docker-comp... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 795,
"all_permissive": false
} |
ansible_role | Evahhhh/Docker | b46f37c8c5a8155254a7ee163d4c032110036316 | 0 | roles/traefik | 7,757 | [
"no_license"
] | [
{
"path": "roles/traefik/tasks/main.yml",
"content": "---\n# Installation de Docker pour Debian\n- name: Installer les dépendances nécessaires\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n state: present\n update_cache: yes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 4503,
"all_permissive": false
} |
ansible_role | lakshmanasairam/PratcicedDevops | e7ab19af0c68527a09dceddca37c9cf646051760 | 0 | practice/ansible/roles/app | 7,757 | [
"no_license"
] | [
{
"path": "practice/ansible/roles/app/tasks/main.yml",
"content": "- name: Install pre-req softwares\n command: amazon-linux-extras install -y lamp-mariadb10.2-php7.2 php7.2\n- name: install apache\n yum:\n name: httpd\n state: latest\n- name: enabled an apache\n systemd:\n name: httpd\n enab... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 654,
"all_permissive": false
} |
ansible_role | lakshmanasairam/PratcicedDevops | e7ab19af0c68527a09dceddca37c9cf646051760 | 0 | practice/ansible/roles/db | 7,757 | [
"no_license"
] | [
{
"path": "practice/ansible/roles/db/tasks/main.yml",
"content": "- name: Installing a Db server\n yum:\n state: latest\n name: mariadb-server,MySQL-python\n- name: Enabling a DB server\n systemd:\n enabled: yes\n name: mariadb\n- name: restarting an server\n systemd:\n state: restarted\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 475,
"all_permissive": false
} |
ansible_role | OlegBray/Passover-DevOps-Homework | ea3576dd67dece99e706265c761ea4ee628b9684 | 0 | Jenkins/Jenkins-Ansible-Nginx/Ansible-Nginx/roles/nginx | 7,757 | [
"no_license"
] | [
{
"path": "Jenkins/Jenkins-Ansible-Nginx/Ansible-Nginx/roles/nginx/tasks/main.yml",
"content": "---\n# tasks file for nginx\n - name: Install nginx\n apt:\n name: nginx\n state: latest\n update_cache: yes\n\n - name: Get Nginx port from local Consul\n uri:\n url: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 992,
"all_permissive": false
} |
ansible_role | devGenie/packer_ansible_GCDGsession | e96f1263ee17f7d2b592dc5c69c54e4b75b651f9 | 3 | ansible/roles/nodejs | 7,757 | [
"no_license"
] | [
{
"path": "ansible/roles/nodejs/tasks/main.yml",
"content": "- name: Add repository\n get_url: \n url: https://deb.nodesource.com/setup_10.x \n dest: ~/\n \n- name: Activate repo\n command: bash -\n become: true\n\n- name: Update cache\n apt:\n update_cache: yes\n become: true\n\n- name: inst... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 375,
"all_permissive": false
} |
ansible_role | devGenie/packer_ansible_GCDGsession | e96f1263ee17f7d2b592dc5c69c54e4b75b651f9 | 3 | ansible/roles/project | 7,757 | [
"no_license"
] | [
{
"path": "ansible/roles/project/tasks/main.yml",
"content": "- name: Install git\n apt:\n name: git\n state: present\n become: yes\n\n- name: clone css clock repository\n git:\n repo: https://github.com/inno-asiimwe/css_clock\n dest: ~/css_clock\n \n- name: Install npm modules\n command: n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 566,
"all_permissive": false
} |
ansible_role | devGenie/packer_ansible_GCDGsession | e96f1263ee17f7d2b592dc5c69c54e4b75b651f9 | 3 | ansible/roles/update | 7,757 | [
"no_license"
] | [
{
"path": "ansible/roles/update/tasks/main.yml",
"content": "- name: Update\n apt:\n update_cache: yes\n become: true\n\n- name: upgrade system\n apt:\n upgrade: yes\n upgrade: dist\n update_cache: true\n become: true",
"license_type": "no_license",
"detected_licenses": [],
"size... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 162,
"all_permissive": false
} |
ansible_role | bear-kneesdgreat2001/HOA14_Pena | e1c0ad4de2366b37e2e3e3f11f4a78f900006678 | 0 | roles/glance | 7,757 | [
"no_license"
] | [
{
"path": "roles/glance/templates/glance.conf.j2",
"content": "# roles/glance/templates/glance.conf.j2\n\n[DEFAULT]\nbind_host = {{ glance_bind_host | default('0.0.0.0') }}\nbind_port = {{ glance_bind_port | default(9292) }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 354,
"all_permissive": false
} |
ansible_role | bear-kneesdgreat2001/HOA14_Pena | e1c0ad4de2366b37e2e3e3f11f4a78f900006678 | 0 | roles/keystone | 7,757 | [
"no_license"
] | [
{
"path": "roles/keystone/templates/keystone.conf.j2",
"content": "[DEFAULT]\nadmin_token = {{ admin_token }}\ndebug = {{ debug | default(False) }}\n\n[database]\nconnection = {{ keystone_database_connection | default('sqlite:////var/lib/keystone/keystone.db') }}\n\n[identity]\ndriver = sql\n",
"license... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 425,
"all_permissive": false
} |
ansible_role | bear-kneesdgreat2001/HOA14_Pena | e1c0ad4de2366b37e2e3e3f11f4a78f900006678 | 0 | roles/nova | 7,757 | [
"no_license"
] | [
{
"path": "roles/nova/tasks/main.yml",
"content": "---\n- name: Install Nova on Controllers\n apt:\n name:\n - nova-api\n - nova-compute\n - python3-nova\n state: present\n become: true\n\n- name: Configure Nova on Controllers\n template:\n src: nova.conf.j2\n dest: /etc/nova/n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 476,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/beats | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/beats/tasks/filebeat.yml",
"content": "---\n\n- name: filebeat - install filebeat \n apt:\n name: filebeat\n state: latest\n\n- name: filebeat - add cron job\n cron:\n name: start aftert reboot server\n special_time: reboot\n job: \"/bin/sleep 360 && /bin/systemctl... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2017,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/bind | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/bind/tasks/main.yml",
"content": "---\n\n- name: bind - install bind\n include_tasks: install.yml\n when: ansible_hostname == server2.name|string\n\n- name: bind - config systemd-resolved\n template:\n src: resolved.conf\n dest: \"/etc/systemd/resolved.conf\"\n owner: ro... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1859,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/cms | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/cms/tasks/install.yml",
"content": "---\n\n- name: install - make cms dir\n file:\n path: /var/www/cms\n recurse: yes\n force: no\n state: directory\n mode: 0755\n owner: www-data\n group: www-data\n\n- name: dir - unzip cms.zip\n unarchive:\n src: /share/c... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 4635,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/elk | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/elk/tasks/elastic.yml",
"content": "---\n\n- name: elastic - install elasticsearch\n apt:\n name: elasticsearch\n state: latest\n\n- name: elastic - start and enable elasticsearch service\n systemd:\n daemon_reload: yes\n name: elasticsearch.service\n enabled: yes\n... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 6576,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/grafana | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/grafana/tasks/main.yml",
"content": "---\n\n- name: grafana - config db\n include_tasks: db.yml\n when: ansible_hostname == server3.name|string\n\n- name: grafana - install grafana\n include_tasks: install.yml\n when: ansible_hostname == server1.name|string\n\n- name: grafana - ... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 4926,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/init | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/init/tasks/config.yml",
"content": "---\n\n- name: config - copy vim config\n template:\n src: vimrc.local\n dest: /etc/vim/vimrc.local\n owner: root\n group: root\n mode: 0644\n backup: yes\n\n- name: config - add bash source\n lineinfile:\n line: source .bas... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 11113,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/mail | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/mail/tasks/dovecot.yml",
"content": "---\n\n- name: dovecot - install\n apt:\n pkg:\n - dovecot-core\n - dovecot-imapd\n - dovecot-pop3d\n - dovecot-lmtpd\n\n- name: dovecot - start and enable dovecot service\n systemd:\n name: dovecot.service\n enabled: yes\n... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 7573,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/openvpn | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/openvpn/handlers/main.yml",
"content": "---\n\n- name: handlers - collect facts\n gather_facts:\n\n- name: handlers - reload openvpn-server service\n systemd:\n name: openvpn@vpn-server.service\n state: restarted\n\n- name: handlers - reload openvpn-client service\n systemd... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 4967,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/postgres | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/postgres/tasks/apache.yml",
"content": "---\n\n- name: apache - copy config\n template:\n src: pgadmin.conf\n dest: /etc/apache2/sites-available/pgadmin.conf\n mode: 0640\n owner: root\n group: www-data\n notify:\n - handlers - reload apache service\n\n- name: ap... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 7260,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/web | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/web/tasks/systemd.yml",
"content": "---\n\n- name: systemd - apache require\n lineinfile:\n path: /lib/systemd/system/apache2.service\n insertbefore: '^After=(.*)$'\n line: 'Requires=openvpn@{{ ansible_hostname }}.service'\n\n- name: systemd - check apache after-line\n re... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 9168,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/wordpress | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/wordpress/templates/wp-config.php",
"content": "<?php\n/**\n * Основные параметры WordPress.\n *\n * Скрипт для создания wp-config.php использует этот файл в процессе установки.\n * Необязательно использовать веб-интерфейс, можно скопировать файл в \"wp-config.php\"\n * и заполнить ... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 9610,
"all_permissive": false
} |
ansible_role | mkAdmin11/admin-11 | d5f987f4238616144054616d0640b7e5284bae41 | 0 | ansyble/roles/zabbix | 7,757 | [
"no_license"
] | [
{
"path": "ansyble/roles/zabbix/tasks/main.yml",
"content": "---\n\n- name: zabbix - add repozitory\n apt:\n deb: https://repo.zabbix.com/zabbix/6.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.0-3+ubuntu22.04_all.deb\n notify: handlers - update cache\n\n- name: zabbix - flush handlers\n meta: f... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 6494,
"all_permissive": false
} |
ansible_role | sivapavan490/82expense-roles | 9751c46b179e89b61ef3a5187c45cc78c9ae2e04 | 0 | roles/backend | 7,757 | [
"no_license"
] | [
{
"path": "roles/backend/vars/main.yaml",
"content": "MYSQL_HOST: 172.16.58.3\nmysql_user: root\nmysql_password: <PASSWORD>\nAPP_LOCATION: /app\nCOMPONENT: backend",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 105
},
{
"path": "roles/backend/tasks/main.yaml",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2104,
"all_permissive": false
} |
ansible_role | sivapavan490/82expense-roles | 9751c46b179e89b61ef3a5187c45cc78c9ae2e04 | 0 | roles/common | 7,757 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yaml",
"content": "- name: remove existing directory\n ansible.builtin.file:\n path: \"{{ APP_LOCATION }}\" # backend folder is /app and fronend is /usr/share/nginx/html\n state: absent\n\n- name: remove existing directory\n ansible.builtin.file:\n path: \"{{ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 639,
"all_permissive": false
} |
ansible_role | Koodt/ansible | 6cc9c51e963de1dd5094b0c5fc0e06a07db05931 | 0 | roles/default | 7,757 | [
"no_license"
] | [
{
"path": "roles/default/tasks/main.yml",
"content": "---\n- name: Install packages with cache update\n apt:\n name: '{{ packages }}'\n update_cache: yes\n state: present\n force: yes\n vars:\n packages:\n - apt-file\n - apt-mirror\n - aptitude\n - curl\n - docker\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1676,
"all_permissive": false
} |
ansible_role | davidpesce/moodle-dev-env | 6907550cf0b1312683d8f3be5650cd106abe58c1 | 1 | roles/apache | 7,757 | [
"permissive"
] | [
{
"path": "roles/apache/tasks/dependencies.yml",
"content": "---\n\n- name: Install yum-config-manager\n yum: \n name: yum-utils\n state: latest\n\n- name: Install Remi Collet Repository\n yum: name=\"http://rpms.famillecollet.com/enterprise/remi-release-7.rpm\" state=present\n tags:\n - install\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 839,
"all_permissive": true
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.