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 | ULYSSIS-KUL/ipp | 9eaecce5e2e72a5e756fda20fb723e6c63d61741 | 12 | vagrant/roles/postgres | 400 | [
"no_license"
] | [
{
"path": "vagrant/roles/postgres/tasks/main.yml",
"content": "---\n- name: Make sure PostgreSQL 9.3 is up to date\n apt: pkg=postgresql-9.3 state=latest\n- name: Make sure that the psycopg2 module is installed\n apt: pkg=python-psycopg2 state=latest\n- name: Ensure that postgres is running\n service: na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 795,
"all_permissive": false
} |
ansible_role | ULYSSIS-KUL/ipp | 9eaecce5e2e72a5e756fda20fb723e6c63d61741 | 12 | vagrant/roles/redis | 400 | [
"no_license"
] | [
{
"path": "vagrant/roles/redis/tasks/main.yml",
"content": "---\n- name: Make sure Redis is up to date\n apt: pkg=redis-server state=latest\n- name: Put Redis configuration in place\n copy: src=redis.conf dest=/etc/redis/redis.conf owner=root\n notify:\n - restart redis\n",
"license_type": "no_lic... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 211,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/blog | 400 | [
"no_license"
] | [
{
"path": "roles/blog/tasks/main.yml",
"content": "---\n- name: Clone blog repository\n git:\n repo: \"https://github.com/CPunch/openpunk.git\"\n dest: \"/var/www/{{ domain }}\"\n\n- name: Install updateBlog script\n template:\n src: templates/updateBlog\n dest: /usr/local/bin/updateBlog\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1367,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/deadswitch | 400 | [
"no_license"
] | [
{
"path": "roles/deadswitch/tasks/main.yml",
"content": "---\n- name: Create deadman directory\n file:\n name: /root/deadman\n state: directory\n\n- name: Install deadswitch script\n copy:\n src: deadswitch\n dest: /usr/local/bin/deadswitch\n mode: u+rx\n\n- name: Install imdead.sh\n copy:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2310,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/essential | 400 | [
"no_license"
] | [
{
"path": "roles/essential/tasks/main.yml",
"content": "---\n- name: Upgrade Packages\n apt:\n update_cache: yes\n upgrade: full\n\n- name: Install required software\n package:\n name:\n - hugo\n - git\n - nginx\n - tor\n - ufw\n - fail2ban\n - goaccess\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1256,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/firewall | 400 | [
"no_license"
] | [
{
"path": "roles/firewall/tasks/main.yml",
"content": "---\n- name: Allow port 22\n community.general.ufw:\n rule: allow\n port: '22'\n proto: tcp\n\n- name: Allow port 80\n community.general.ufw:\n rule: allow\n port: '80'\n proto: tcp\n\n- name: Allow port 443\n community.general.ufw:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 557,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/git | 400 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "---\n- name: Setup git config\n copy:\n src: .gitconfig\n dest: /root/.gitconfig\n owner: root\n mode: u=rw,g=,o=\n\n# make sure our vps trusts the github.com key signature. we pipe the output\n# of ssh-keyscan into .ssh/known_hosts\n\n- name: S... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1044,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/gitea | 400 | [
"no_license"
] | [
{
"path": "roles/gitea/tasks/main.yml",
"content": "---\n- name: \"Install gitea\"\n include_role:\n name: l3d.gitea\n vars:\n gitea_fqdn: 'git.{{ domain }}'\n gitea_home: '/var/lib/gitea'\n gitea_db_type: 'sqlite3'\n gitea_theme_default: 'gitea-dark'\n gitea_root_url: 'https://git.{{ do... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4827,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/goaccess | 400 | [
"no_license"
] | [
{
"path": "roles/goaccess/tasks/main.yml",
"content": "---\n- name: Copy goaccess config\n copy:\n src: goaccess.conf\n dest: /etc/goaccess/goaccess.conf\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 102
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 102,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/nginx | 400 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: \"Stop Nginx\"\n systemd:\n name: nginx\n state: stopped\n\n- name: \"Setup Certbot\"\n include_role:\n name: geerlingguy.certbot\n vars:\n certbot_admin_email: \"{{ contact_email }}\"\n certbot_create_if_missing: true\n c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2854,
"all_permissive": false
} |
ansible_role | CPunch/openpunk-ansible | 1acd6411cbfd665d9c54150449e3c524a07308d7 | 1 | roles/tor | 400 | [
"no_license"
] | [
{
"path": "roles/tor/tasks/main.yml",
"content": "---\n- name: Install torrc\n template:\n src: templates/torrc\n dest: /etc/tor/torrc\n owner: root\n group: root\n mode: u=rw,g=r,o=r\n\n- name: Create Tor HS directory\n file:\n path: /var/lib/tor/{{ domain }}\n state: directory\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 669,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/bashrc | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/bashrc/templates/bashrc.j2",
"content": "# .bashrc\n\nPATH=$PATH:/usr/local/bin:/usr/local/git/bin\nexport PATH\n\nPS1='\\[\\e[0;32m\\]\\u\\[\\e[m\\] @ \\[\\e[0;33m\\]\\h\\[\\e[m\\] \\[\\e[1;31m\\]\\w\\[\\e[m\\] \\[\\e[1;32m\\]\\$\\[\\e[m\\] \\[\\e[1;37m\\]'\n\nalias rm='rm -i'\nali... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 399,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/common | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yml",
"content": "# common\n\n\n- name: Disable SE-Linux\n selinux: state=disabled\n\n- name: Make sure .ssh folder is in place with correct permissions\n file: path=/root/.ssh state=directory mode=0644\n\n- name: Install EPEL repository\n yum: name=epel-release... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 957,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/composer | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/composer/tasks/main.yml",
"content": "#Installs composer. code adapted from https://github.com/Vinelab/ansible-composer/blob/master/tasks/main.yml\n\n- name: install composer\n shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin creates=/usr/loca... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 391,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/git2 | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/git2/tasks/main.yml",
"content": "# This is based off instructions here http://tecadmin.net/install-git-2-0-on-centos-rhel-fedora/\n- name: install required packages for git2\n yum: name={{ item }} state=latest\n with_flattened:\n - curl-devel\n - expat-devel\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 969,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/httpd | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/httpd/tasks/main.yml",
"content": "- name: Install Apache httpd packages\n yum: name={{ item }} state=latest\n with_flattened:\n - httpd\n - httpd-devel\n - httpd-tools\n - mod_ssl\n\n- name: Create /etc/httpd/vhosts\n file: path=/etc/httpd/vhosts stat... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1603,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/httpd_basic_auth | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/httpd_basic_auth/tasks/main.yml",
"content": "#NOTE: this will only create password file to actually make basic auth start to work.\n# However there are other things you will need to do to make Basic Auth work.\n# You can use the ansible variables basic_auth_front_vhost and basic_au... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 867,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/httpd_ssl | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/httpd_ssl/tasks/main.yml",
"content": "#TODO - these SSL scripts have not been tested on centos7/apache2.4\n\n- name: replace the default ssl.conf with correct settings (SSL)\n action: template src=ssl.conf.j2 dest=/etc/httpd/conf.d/ssl.conf mode=644\n\n- name: Copy CA bundle File ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 612,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/httpd_vhosts | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/httpd_vhosts/templates/sym.conf.j2",
"content": "<VirtualHost *:80>\n\n ServerName {{ sym_domain }}\n\n SetEnv SYMFONY_ENV {{ symfony_env }}\n\n DocumentRoot \"/var/www/symfony/web\"\n ServerAdmin {{ apache_server_admin_email }}\n\n ErrorLog /var/www/logs/error-api.lo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2785,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/mysql | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/mysql/tasks/main.yml",
"content": "#NOTE: if you are using an external MySQL server, and you only want to install the MySQL client, then use the ansible variable mysql_install_server=false\n# You should pass ansible variable mysql_password at runtime.\n# when mysql_install_server=fa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2432,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/phing | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/phing/tasks/main.yml",
"content": "#Installs Phing\n\n- name: installs \"Phing\"\n get_url: url=http://www.phing.info/get/phing-latest.phar dest=/usr/local/bin/phing-latest.phar mode=0755\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 150
}
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 150,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/php7 | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/php7/tasks/main.yml",
"content": "# php7\n\n#https://support.rackspace.com/how-to/install-epel-and-additional-repositories-on-centos-and-red-hat/\n- name: install EPEL\n yum: name=https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm\n\n# for PHP 7 https://webtatic... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2154,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/php_settings | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/php_settings/tasks/main.yml",
"content": "- name: Install custom slamp.ini file\n action: template src=slamp.ini.j2 dest=/etc/php.d/slamp.ini mode=644\n\n- name: Restart Apache\n service: name=httpd state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 313,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/repo_prep | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/repo_prep/templates/gitprovider.symfony.deploy.pub.j2",
"content": "[[EDIT]]",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 8
},
{
"path": "ansible/roles/repo_prep/tasks/main.yml",
"content": "#You will need to log into bitbucket/Githu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 812,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/repo_pull | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/repo_pull/tasks/main.yml",
"content": "#This playbook was written for bitbucket, hopefully it works for github\n#Note that an SSH alias is not needed as the ssh key is been specified\n\n- name: clone or pull git repo (Symfony)\n git: repo={{ repo_symfony_source }}\n dest={{ r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 815,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/shortcut_scripts | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/shortcut_scripts/templates/phpunit.j2",
"content": "#!/bin/bash\n#Shortcut for running PHPUnit (The version of PHPUnit which is installed by composer)\ncd /var/www/dynamic-files/vendor/phpunit/phpunit\nphp phpunit -c /var/www/symfony $@",
"license_type": "no_license",
"detec... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 1027,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/wkhtmltopdf | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/wkhtmltopdf/tasks/main.yml",
"content": "#https://jaimegris.wordpress.com/2015/03/04/how-to-install-wkhtmltopdf-in-centos-7-0/\n\n- name: install prerequisites for wkhtmltopdf\n yum: name=xorg-x11-fonts-75dpi state=latest\n\n- name: install prerequisites for wkhtmltopdf\n yum: nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 571,
"all_permissive": false
} |
ansible_role | expertcoder/ansible-playbooks-slamp | 514c3cba03a653cf0aa60cb6b71134523958361f | 2 | ansible/roles/xdebug | 400 | [
"no_license"
] | [
{
"path": "ansible/roles/xdebug/templates/xdebug.ini.j2",
"content": "[Xdebug]\nzend_extension=\"/usr/lib64/php/modules/xdebug.so\"\ndebug.remote_enable=1\nxdebug.profiler_enable=0\nxdebug.profiler_enable_trigger=1\nxdebug.profiler_output_dir=\"{{ xdebug_profiler_output_dir }}\"\n",
"license_type": "no_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 641,
"all_permissive": false
} |
ansible_role | janjaap/ansible | 6d93c77d3088aa052066e3c137d844ab58887681 | 0 | support/ansible/roles/common | 404 | [
"no_license"
] | [
{
"path": "support/ansible/roles/common/vars/main.yml",
"content": "#php.ini\nphp_display_errors: On",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 31
},
{
"path": "support/ansible/roles/common/tasks/main.yml",
"content": "# Update the repo, because most boxes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1963,
"all_permissive": false
} |
ansible_role | janjaap/ansible | 6d93c77d3088aa052066e3c137d844ab58887681 | 0 | support/ansible/roles/development | 404 | [
"no_license"
] | [
{
"path": "support/ansible/roles/development/files/.zshrc",
"content": "# Path to your oh-my-zsh configuration.\nZSH=$HOME/.oh-my-zsh\n\n# Set name of the theme to load.\n# Look in ~/.oh-my-zsh/themes/\n# Optionally, if you set this to \"random\", it'll load a random theme each\n# time that oh-my-zsh is loa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3681,
"all_permissive": false
} |
ansible_role | janjaap/ansible | 6d93c77d3088aa052066e3c137d844ab58887681 | 0 | support/ansible/roles/local-development | 404 | [
"no_license"
] | [
{
"path": "support/ansible/roles/local-development/vars/main.yml",
"content": "local_git_key : ~/.ssh/id_rsa\nlocal_db : local\nlocal_site: local\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
},
{
"path": "support/ansible/roles/local-development/templates/ap... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2234,
"all_permissive": false
} |
ansible_role | rayokota/provision-angular-ratpack | 0d99837d657e5e611caf95dd5901ebc3ccd71c56 | 0 | roles/generator | 404 | [
"no_license"
] | [
{
"path": "roles/generator/tasks/main.yml",
"content": "---\n- name: Install Yeoman\n npm: name=yo\n global=yes\n\n- name: Install Angular-Ratpack Generator\n npm: name=generator-angular-ratpack\n global=yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 1... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 159,
"all_permissive": false
} |
ansible_role | rayokota/provision-angular-ratpack | 0d99837d657e5e611caf95dd5901ebc3ccd71c56 | 0 | roles/groovy | 404 | [
"no_license"
] | [
{
"path": "roles/groovy/tasks/main.yml",
"content": "---\n- name: Install unzip\n apt: pkg=unzip\n\n- name: Install GVM\n shell: curl -s get.gvmtool.net | bash\n sudo: false\n\n- name: Make GVM non-interactive\n lineinfile: dest=~/.gvm/etc/config regexp=^gvm_auto_answer= line=gvm_auto_answer=true\n sud... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 582,
"all_permissive": false
} |
ansible_role | SandeepCherka/Ansiblescript-to-start-kafka-and-zoo | b1242b81e488552a54f4ca903b1e2da81f104510 | 0 | ansible/roles/kafka | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/kafka/tasks/main.yml",
"content": "---\n- name: Start Kafka\n shell: \"{{ kafka_installation_path }}/bin/kafka-server-start -daemon {{ kafka_config_file_path }}\"\n become_user: \"{{ kafka_user }}\"\n environment:\n KAFKA_HEAP_OPTS: \"-Xmx512M -Xms512M\"\n when: kafka_install... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 441,
"all_permissive": false
} |
ansible_role | SandeepCherka/Ansiblescript-to-start-kafka-and-zoo | b1242b81e488552a54f4ca903b1e2da81f104510 | 0 | ansible/roles/zookeeper | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/zookeeper/tasks/main.yml",
"content": "---\n- name: Start ZooKeeper\n shell: \"{{ zookeeper_installation_path }}/bin/zookeeper-server-start -daemon {{ zookeeper_config_file_path }}\"\n become_user: \"{{ zookeeper_user }}\"\n environment:\n KAFKA_HEAP_OPTS: \"-Xmx512M -Xms512M\"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 480,
"all_permissive": false
} |
ansible_role | thistehneisen/tobook | ebc026753ab278f464244f3b7c69b8dfdec38e55 | 1 | devops/roles/app | 404 | [
"no_license"
] | [
{
"path": "devops/roles/app/templates/environment.php",
"content": "<?php\nreturn '{{ env }}';\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 26
},
{
"path": "devops/roles/app/tasks/main.yml",
"content": "---\n- name: create apache log directory\n action: f... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2975,
"all_permissive": false
} |
ansible_role | thistehneisen/tobook | ebc026753ab278f464244f3b7c69b8dfdec38e55 | 1 | devops/roles/common | 404 | [
"no_license"
] | [
{
"path": "devops/roles/common/tasks/main.yml",
"content": "---\n- name: add redis repo\n apt_repository: repo='ppa:chris-lea/redis-server'\n\n- name: ensure apt cache is up to date\n action: apt update_cache=yes\n\n- name: install common packages needed for development\n action: apt pkg={{ item }} state... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1617,
"all_permissive": false
} |
ansible_role | thistehneisen/tobook | ebc026753ab278f464244f3b7c69b8dfdec38e55 | 1 | devops/roles/db | 404 | [
"no_license"
] | [
{
"path": "devops/roles/db/tasks/create_db.yml",
"content": "- name: ensure database is created\n mysql_db: login_user={{ mysql_user }} login_password={{ <PASSWORD>_pw }} name={{ dbname }} state=present\n\n- name: ensure user has access to database\n mysql_user: login_user={{ mysql_user }} login_password=... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 564,
"all_permissive": false
} |
ansible_role | maastiff/pi-unifi-controller | 3b84d2d95fe11aca9c50ffdc7095a43aada21ff0 | 1 | roles/common | 404 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n\n- name: Install utilities\n become: yes\n apt:\n name: \"{{ packages }}\"\n state: present\n vars:\n packages:\n - htop\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 131
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 131,
"all_permissive": false
} |
ansible_role | maastiff/pi-unifi-controller | 3b84d2d95fe11aca9c50ffdc7095a43aada21ff0 | 1 | roles/java-oracle | 404 | [
"no_license"
] | [
{
"path": "roles/java-oracle/tasks/main.yml",
"content": "---\n\n- name: Ensure Java is installed\n become: yes\n apt:\n name: oracle-java{{ oracle_java_version }}-jdk\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 129
},
{
"path": "role... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 229,
"all_permissive": false
} |
ansible_role | maastiff/pi-unifi-controller | 3b84d2d95fe11aca9c50ffdc7095a43aada21ff0 | 1 | roles/prerequisites | 404 | [
"no_license"
] | [
{
"path": "roles/prerequisites/tasks/main.yml",
"content": "---\n\n- name: Verify Ansible meets version requirements\n assert:\n that: ansible_version.full is version_compare('2.7', '>=')\n success_msg: Ansible version {{ ansible_version.full }} meet requirements.\n fail_msg: You must update Ansib... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 298,
"all_permissive": false
} |
ansible_role | maastiff/pi-unifi-controller | 3b84d2d95fe11aca9c50ffdc7095a43aada21ff0 | 1 | roles/unifi | 404 | [
"no_license"
] | [
{
"path": "roles/unifi/handlers/main.yml",
"content": "---\n\n- name: Restart UniFi controller\n become: yes\n service:\n name: unifi\n state: restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 100
},
{
"path": "roles/unifi/meta/main.yml",
"con... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1151,
"all_permissive": false
} |
ansible_role | erbrito/ansible-aws | 84e668804d822a21841d09e029e779fed67859f0 | 0 | roles/local-role | 404 | [
"no_license"
] | [
{
"path": "roles/local-role/handlers/main.yml",
"content": "---\n# handlers file for local-role",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "roles/local-role/vars/main.yml",
"content": "---\n# vars file for local-role\n# vars defined here ha... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1084,
"all_permissive": false
} |
ansible_role | Otus-DevOps-2021-11/antik9_infra | f37c21169951b4982c460a4061e54193d8be9eed | 0 | ansible/roles/app | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/app/tasks/puma.yml",
"content": "---\n- name: Add unit file for Puma\n template:\n src: puma.service.j2\n dest: /etc/systemd/system/puma.service\n mode: 0644\n notify: reload puma\n\n- name: Add config for DB connection\n template:\n src: db_config.j2\n dest: /home... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 427,
"all_permissive": false
} |
ansible_role | BharathReddyG8496/DevopsProject | 9f88c238666976f3602cf0035d3881e0ed899a8d | 0 | ansible-project/roles/common | 404 | [
"no_license"
] | [
{
"path": "ansible-project/roles/common/tasks/main.yml",
"content": "---\n- name: Update apt cache\n apt:\n update_cache: yes\n become: yes\n\n- name: Install Docker\n apt:\n name: docker.io\n state: present\n become: yes\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": 156,
"all_permissive": false
} |
ansible_role | BharathReddyG8496/DevopsProject | 9f88c238666976f3602cf0035d3881e0ed899a8d | 0 | ansible-project/roles/microservices | 404 | [
"no_license"
] | [
{
"path": "ansible-project/roles/microservices/tasks/main.yml",
"content": "---\n- name: Build the User Service Docker image\n docker_image:\n name: user-service\n tag: latest\n source: build\n build:\n path: \"{{ playbook_dir }}/../microservices/user-service\"\n become: yes\n\n- name: Ru... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 883,
"all_permissive": false
} |
ansible_role | sparsick/ci-cd-playbooks | f8b4b873b935969de05f705dc37d9a42870584aa | 0 | roles/ansible | 404 | [
"no_license"
] | [
{
"path": "roles/ansible/tasks/ansible-Debian.yml",
"content": "- name: Add ansible stable repository from PPA and install its signing key on Ubuntu target\n ansible.builtin.apt_repository:\n repo: ppa:ansible/ansible\n\n- name: install ansible and pip\n ansible.builtin.apt:\n name:\n - ansible... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 600,
"all_permissive": false
} |
ansible_role | sparsick/ci-cd-playbooks | f8b4b873b935969de05f705dc37d9a42870584aa | 0 | roles/dockerd | 404 | [
"no_license"
] | [
{
"path": "roles/dockerd/defaults/main.yml",
"content": "---\n# defaults file for dockerd\ndocker_user: \"{{ ansible_user }}\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 66
},
{
"path": "roles/dockerd/tasks/Debian.yml",
"content": "- name: add Docker's o... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1236,
"all_permissive": false
} |
ansible_role | sparsick/ci-cd-playbooks | f8b4b873b935969de05f705dc37d9a42870584aa | 0 | roles/git | 404 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "- include: \"{{ ansible_os_family }}.yml\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 41
},
{
"path": "roles/git/tasks/Debian.yml",
"content": "- name: installl Git\n apt:\n name: git\n update_cach... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 105,
"all_permissive": false
} |
ansible_role | sparsick/ci-cd-playbooks | f8b4b873b935969de05f705dc37d9a42870584aa | 0 | roles/jenkins | 404 | [
"no_license"
] | [
{
"path": "roles/jenkins/tasks/Debian.yml",
"content": "---\n- name: Add an Apt signing key for Jenkins\n apt_key:\n url: https://pkg.jenkins.io/debian/jenkins.io.key\n state: present\n\n- name: add jenkins repo\n apt_repository:\n repo: deb https://pkg.jenkins.io/debian binary/\n state: prese... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 7238,
"all_permissive": false
} |
ansible_role | sparsick/ci-cd-playbooks | f8b4b873b935969de05f705dc37d9a42870584aa | 0 | roles/terraform | 404 | [
"no_license"
] | [
{
"path": "roles/terraform/tasks/Debian.yml",
"content": "- name: Add an Apt signing key for Terraform\n ansible.builtin.apt_key:\n url: https://apt.releases.hashicorp.com/gpg\n state: present\n\n- name: Add Terraform repository\n ansible.builtin.apt_repository:\n repo: \"deb [arch=amd64] https:/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 455,
"all_permissive": false
} |
ansible_role | sparsick/ci-cd-playbooks | f8b4b873b935969de05f705dc37d9a42870584aa | 0 | roles/vagrant | 404 | [
"no_license"
] | [
{
"path": "roles/vagrant/tasks/main.yml",
"content": "- include: \"virtualbox-{{ ansible_os_family }}.yml\"\n- include: \"vagrant-{{ ansible_os_family }}.yml\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 101
},
{
"path": "roles/vagrant/tasks/virtualbox-Debian... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1259,
"all_permissive": false
} |
ansible_role | msmagnanijr/ovirt-offensive-infrastructure-hashistack | be7fe057ddce336f38c2d8996102a7e03868536b | 1 | ansible/roles/consul | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/consul/tasks/main.yml",
"content": "---\n- name: download and extract\n unarchive:\n src: \"https://releases.hashicorp.com/consul/{{ consul_version }}/consul_{{ consul_version }}_linux_amd64.zip\"\n dest: /usr/bin\n creates: \"consul_{{ consul_version }}_linux_amd64.zip\"\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1478,
"all_permissive": false
} |
ansible_role | msmagnanijr/ovirt-offensive-infrastructure-hashistack | be7fe057ddce336f38c2d8996102a7e03868536b | 1 | ansible/roles/nomad | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/nomad/defaults/main.yml",
"content": "---\n\nnomad_version: \"1.0.1\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 28
},
{
"path": "ansible/roles/nomad/templates/nomad.hcl.j2",
"content": "datacenter = \"lab\"\ndata_dir = \"/opt/no... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2158,
"all_permissive": false
} |
ansible_role | msmagnanijr/ovirt-offensive-infrastructure-hashistack | be7fe057ddce336f38c2d8996102a7e03868536b | 1 | ansible/roles/traefik | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/traefik/templates/dynamic_conf.yaml.j2",
"content": "# Dynamic configuration\nhttp:\n routers:\n api:\n rule: \"Host(`traefik.{{ domain }}`)\"\n service: \"api@internal\"\n entrypoints: \"traefik\"\n consul:\n rule: \"Host(`consul.{{ domain }}`)\"\n s... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2213,
"all_permissive": false
} |
ansible_role | msmagnanijr/ovirt-offensive-infrastructure-hashistack | be7fe057ddce336f38c2d8996102a7e03868536b | 1 | ansible/roles/vault | 404 | [
"no_license"
] | [
{
"path": "ansible/roles/vault/tasks/init.yml",
"content": "---\n- name: create unseal directories\n delegate_to: localhost\n become: no\n file:\n path: \"{{ vault_unseal_keys_dir }}\"\n state: directory\n\n- name: create root key directories\n delegate_to: localhost\n become: no\n file:\n pa... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 4717,
"all_permissive": false
} |
ansible_role | takaZ-yuki/Study | ab20b842d2ca78f7757671177088176d74650ca0 | 0 | Vagrant/samplllll/share/roles/postgresql | 404 | [
"no_license"
] | [
{
"path": "Vagrant/samplllll/share/roles/postgresql/vars/main.yml",
"content": "version: \"9.5\"\nrpmurl:\n redhat: \"http://yum.postgresql.org/{{ version }}/redhat/rhel-7-x86_64/pgdg-centos95-{{ version }}-2.noarch.rpm\"\npackage_name: \"postgresql95\"\nuser: \"vagrant\"\ndbuser: \"sample_user\"\ndbpass: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1233,
"all_permissive": false
} |
ansible_role | takaZ-yuki/Study | ab20b842d2ca78f7757671177088176d74650ca0 | 0 | Vagrant/samplllll/share/roles/selinux | 404 | [
"no_license"
] | [
{
"path": "Vagrant/samplllll/share/roles/selinux/tasks/main.yml",
"content": "# ===================\n# SELinuxを無効化する(selinux.yml)\n# ===================\n# ===================\n# すべてのサーバのSELinuxを無効化する\n# ===================\n - name: Install libselinux-python\n yum: name=libselinux-python state=present\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 388,
"all_permissive": false
} |
ansible_role | takaZ-yuki/Study | ab20b842d2ca78f7757671177088176d74650ca0 | 0 | Vagrant/vagrant-ansible/share/roles/init | 404 | [
"no_license"
] | [
{
"path": "Vagrant/vagrant-ansible/share/roles/init/tasks/main.yml",
"content": "---\n- name : yum update実行\n yum :\n name : \"*\"\n state : latest\n\n- name : EPELリポジトリをインストール\n yum :\n name : epel-release\n state : installed\n",
"license_type": "no_license",
"detected... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 165,
"all_permissive": false
} |
ansible_role | takaZ-yuki/Study | ab20b842d2ca78f7757671177088176d74650ca0 | 0 | Vagrant/vagrant-ansible/share/roles/lamp | 404 | [
"no_license"
] | [
{
"path": "Vagrant/vagrant-ansible/share/roles/lamp/tasks/main.yml",
"content": " #\n # Apache\n #\n - name: Apache インストール\n yum: name=httpd\n\n - name: Apache 起動\n service: name=httpd state=started enabled=yes\n\n - name: .htaccessを有効にする\n replace:\n dest=/etc/httpd/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1158,
"all_permissive": false
} |
ansible_role | takaZ-yuki/Study | ab20b842d2ca78f7757671177088176d74650ca0 | 0 | Vagrant/vagrant-ansible/share/roles/pg | 404 | [
"no_license"
] | [
{
"path": "Vagrant/vagrant-ansible/share/roles/pg/tasks/main.yml",
"content": "- name: PostgreSQL initdb\n command:\n postgresql-setup initdb\n register:\n result\n failed_when: result.rc not in [0, 1]\n changed_when: result.rc == 0\n\n- name: pg_hba.confにredmine用設定が存在するか確認\n sudo: yes\n command... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1438,
"all_permissive": false
} |
ansible_role | jszalkowski/aws | 9b5efd709ac82d01cede88ca936f228474c696df | 0 | packer/base/roles/common | 404 | [
"no_license"
] | [
{
"path": "packer/base/roles/common/tasks/timezone.yml",
"content": "# Timezone 関係の設定\n- name: set timezone\n lineinfile: >\n dest=/etc/cloud/cloud.cfg\n regexp='timezone\\:'\n line=\"timezone: {{zone}}\"\n insertbefore='^# vim\\:syntax=yaml'",
"license_type": "no_license",
"detected_li... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 1026,
"all_permissive": false
} |
ansible_role | jszalkowski/aws | 9b5efd709ac82d01cede88ca936f228474c696df | 0 | packer/base/roles/users | 404 | [
"no_license"
] | [
{
"path": "packer/base/roles/users/tasks/main.yml",
"content": "- include: users.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 21
},
{
"path": "packer/base/roles/users/tasks/users.yml",
"content": "# ユーザ管理\n- name: create users\n user: name={{item.name... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 530,
"all_permissive": false
} |
ansible_role | jszalkowski/aws | 9b5efd709ac82d01cede88ca936f228474c696df | 0 | packer/onetime_base/roles/common | 404 | [
"no_license"
] | [
{
"path": "packer/onetime_base/roles/common/tasks/onetime.yml",
"content": "# OneTime Script の設定\n- name: copy onetime script\n copy: src=onetime.py dest=/home/ec2-user owner=ec2-user group=ec2-user mode=0644\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 132
},
{
... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 587,
"all_permissive": false
} |
ansible_role | jszalkowski/aws | 9b5efd709ac82d01cede88ca936f228474c696df | 0 | packer/redash/roles/common | 404 | [
"no_license"
] | [
{
"path": "packer/redash/roles/common/tasks/main.yml",
"content": "- include: packages.yml\n- include: locale.yml\n- include: timezone.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 70
},
{
"path": "packer/redash/roles/common/tasks/timezone.yml",
"conten... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 551,
"all_permissive": false
} |
ansible_role | jszalkowski/aws | 9b5efd709ac82d01cede88ca936f228474c696df | 0 | templates/_ami_template/roles/common | 404 | [
"no_license"
] | [
{
"path": "templates/_ami_template/roles/common/handlers/nginx.yml",
"content": "# nginx handlers\n- name: restart nginx service\n service: name=httpd state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 85
},
{
"path": "templates/_ami_template/roles/... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 519,
"all_permissive": false
} |
ansible_role | quasardriod/k8s-1.6-HA-Ubuntu | 9b6192ae0adec4e6d268e056c4b9c7bc1329ace9 | 0 | roles/2-k8s-cluster-files | 404 | [
"no_license"
] | [
{
"path": "roles/2-k8s-cluster-files/templates/etcd.j2",
"content": "apiVersion: v1\nkind: Pod\nmetadata:\n name: etcd-server\nspec:\n hostNetwork: true\n containers:\n - image: gcr.io/google_containers/etcd:2.0.9\n name: etcd-container\n command:\n - /usr/local/bin/etcd\n - --name\n - {{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2119,
"all_permissive": false
} |
ansible_role | quasardriod/k8s-1.6-HA-Ubuntu | 9b6192ae0adec4e6d268e056c4b9c7bc1329ace9 | 0 | roles/7-k8s-deploy-nginx | 404 | [
"no_license"
] | [
{
"path": "roles/7-k8s-deploy-nginx/files/clusterip-svc.yaml",
"content": "---\nkind: Service\napiVersion: v1\nmetadata:\n name: nginx-clusterip-svc\nspec:\n selector:\n app: nginx\n type: ClusterIP\n ports:\n - protocol: TCP\n port: 80\n targetPort: 80\n \n",
"license_type": "no_li... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 478,
"all_permissive": false
} |
ansible_role | eltscheminov/continuousdelivery | f826c64592f285d21bf040f721b40cf1f1c0c291 | 0 | ansible/roles/common | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yml",
"content": "- name : Host is present\n lineinfile:\n dest: /etc/hosts\n regexp: \"^{{ item.host_ip }}\"\n line: \"{{ item.host_ip }} {{ item.host_name }}\"\n with_items: \"{{hosts}}\"\n tags: [common]\n",
"license_type": "no_license",
"det... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 251,
"all_permissive": false
} |
ansible_role | eltscheminov/continuousdelivery | f826c64592f285d21bf040f721b40cf1f1c0c291 | 0 | ansible/roles/mongodb | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/mongodb/tasks/main.yml",
"content": "- name: CentOS files are copied\n copy:\n src: \"{{ item.src }}\"\n dest: \"{{ item.dest }}\"\n with_items: \"{{ centos_files }}\"\n tags: [mongodb]\n\n- name: Creates mongo data directory\n file:\n path: /data/db\n state: directo... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 576,
"all_permissive": false
} |
ansible_role | Torniojaws/vortech-backend | a50358fed233d77527410a9220bf1e2325976dc1 | 1 | deploy/roles/app | 405 | [
"no_license"
] | [
{
"path": "deploy/roles/app/tasks/main.yml",
"content": "---\n- name: Create the app directory\n become: yes\n file:\n path: /srv/vortech-backend\n state: directory\n\n- name: Setup virtualenv in the app directory\n become: yes\n # Need to use shell explicitly, to prevent Ansible from using Python... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1256,
"all_permissive": false
} |
ansible_role | Torniojaws/vortech-backend | a50358fed233d77527410a9220bf1e2325976dc1 | 1 | deploy/roles/database | 405 | [
"no_license"
] | [
{
"path": "deploy/roles/database/files/my.cnf.j2",
"content": "[client]\nuser=root\npassword={{ <PASSWORD> }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 45
},
{
"path": "deploy/roles/database/tasks/secret-cfg.yml",
"content": "- name: Create secret.cfg\n... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3443,
"all_permissive": false
} |
ansible_role | Torniojaws/vortech-backend | a50358fed233d77527410a9220bf1e2325976dc1 | 1 | deploy/roles/platform | 405 | [
"no_license"
] | [
{
"path": "deploy/roles/platform/tasks/main.yml",
"content": "---\n- import_tasks: create-user.yml\n- import_tasks: stop-apache.yml\n- import_tasks: update-apt.yml\n- import_tasks: install-programs.yml\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 136
},
{
"pat... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1858,
"all_permissive": false
} |
ansible_role | Torniojaws/vortech-backend | a50358fed233d77527410a9220bf1e2325976dc1 | 1 | deploy/roles/webserver | 405 | [
"no_license"
] | [
{
"path": "deploy/roles/webserver/tasks/nginx.yml",
"content": "- name: Copy project Nginx config\n become: yes\n copy:\n src: ../files/nginx-config.conf\n dest: /etc/nginx/sites-enabled/vortech-backend.conf\n\n- name: Append Production https redirect to Nginx config\n become: yes\n when: env == '... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2651,
"all_permissive": false
} |
ansible_role | kezzyhko/devops | d3081487f436a54f81d74da67d0b9036bd697311 | 0 | ansible/roles/deploydockerimage | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/deploydockerimage/README.md",
"content": "This role creates container with given `image` variable, and forwards given `ports` variable",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
},
{
"path": "ansible/roles/deploydockerimage/tasks/ma... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 533,
"all_permissive": false
} |
ansible_role | kezzyhko/devops | d3081487f436a54f81d74da67d0b9036bd697311 | 0 | ansible/roles/installdocker | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/installdocker/tasks/main.yml",
"content": "---\n- name: Add Docker GPG apt Key\n become: true\n apt_key:\n url: \"https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg\"\n state: present\n\n- name: Add Docker Repository\n become: true\n apt_repository:\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 761,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/backup | 405 | [
"no_license"
] | [
{
"path": "roles/backup/tasks/centos6.yml",
"content": "---\n\n\n- name: install ruby2.0 gpg --keyserver\n command: gpg --keyserver hkp://keys.gnupg.net --recv-keys <KEY>\n run_once: true\n\n- name: install ruby2.0 rvm\n shell: curl -sSL https://get.rvm.io | bash -s stable\n run_once: true\n\n- name: rv... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 14686,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/common | 405 | [
"no_license"
] | [
{
"path": "roles/common/tasks/sshd.yml",
"content": "---\n\n- name:\n yum: name={{ item }} state=present\n with_items:\n - openssh-server\n - openssh-clients\n - openssh\n tags: sshd\n\n- name:\n lineinfile:\n dest=/etc/ssh/sshd_config\n state=present\n regexp='^#?Port'\n line=\"Port {... | {
"task_files": 15,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 24,
"total_bytes": 16723,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/jdk | 405 | [
"no_license"
] | [
{
"path": "roles/jdk/defaults/main.yml",
"content": "---\n\njdk:\n jdk1.7.0_79: jdk-7u79-linux-x64.tar.gz\n jdk-1.8.0: jdk-1.8.0.tar.gz\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 81
},
{
"path": "roles/jdk/tasks/main.yml",
"content": "---\n\n- name:\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 880,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/nginx | 405 | [
"no_license"
] | [
{
"path": "roles/nginx/templates/device-sn.conf.j2",
"content": "server {\n listen 80 ;\n server_name device-sn.lifesense.com;\n charset utf-8;\n access_log /data/logs/nginx/device-sn_access.log access;\n\n location = /lxwd_logo.png {\n expires off;\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 23,
"total_bytes": 64574,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/redis | 405 | [
"no_license"
] | [
{
"path": "roles/redis/files/redis",
"content": "#!/bin/sh\n#chkconfig: 345 86 14\n#description: Startup and shutdown script for Redis\n\n_current_path() {\n SOURCE=${BASH_SOURCE[0]}\n DIR=$( dirname \"$SOURCE\" )\n while [ -h \"$SOURCE\" ]\n do\n SOURCE=$(readlink \"$SOURCE\")\n [... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2415,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/tomcat | 405 | [
"no_license"
] | [
{
"path": "roles/tomcat/templates/setenv.sh",
"content": "JAVA_HOME=\"${CATALINA_HOME}/../deps/{{jdk_version}}/\"\n{% if jdk_version == \"jdk1.7.0_79\" %}\nJAVA_OPTS=\"-server -Xms2048m -Xmx2048m -Xss1m -XX:PermSize=2048m -XX:MaxPermSize=2048m -Duser.timezone=Asia/Shanghai -Dfile.encoding=UTF-8\"\n{% else %... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 6545,
"all_permissive": false
} |
ansible_role | caiwenhao/yike-ansible | aa9793581468faa7a43925c5d75cc0a6f57fd72f | 0 | roles/zabbix | 405 | [
"no_license"
] | [
{
"path": "roles/zabbix/files/zabbix_api.py",
"content": "#!/usr/bin/env python\nfrom pyzabbix import ZabbixAPI\nimport os\nimport re\n\nzapi = ZabbixAPI(\"http://zabbix3.yw.lifesense.com:10080\")\nzapi.login(\"caiwenhao\", \"cwh0802lx\")\nprint(\"Connected to Zabbix API Version %s\" % zapi.api_version())\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 50024,
"all_permissive": false
} |
ansible_role | buhsnn/TP3 | 6aba6aced064670d42b5316c7eaa4954381556dd | 0 | ansible/roles/app | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/app/tasks/main.yml",
"content": "- name: Run App container\n community.docker.docker_container:\n name: simple-api\n image: buhsnn/tp-devops-simple-api:latest\n state: started\n restart_policy: always\n env:\n SPRING_DATASOURCE_URL: \"{{ SPRING_DATASOURCE_URL }}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 534,
"all_permissive": false
} |
ansible_role | buhsnn/TP3 | 6aba6aced064670d42b5316c7eaa4954381556dd | 0 | ansible/roles/db | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/db/tasks/main.yml",
"content": "- name: Run PostgreSQL container\n community.docker.docker_container:\n name: my_postgres\n image: buhsnn/tp-devops-database:latest\n state: started\n restart_policy: always\n env:\n POSTGRES_PASSWORD: \"{{ SPRING_DATASOURCE_PASSW... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 493,
"all_permissive": false
} |
ansible_role | buhsnn/TP3 | 6aba6aced064670d42b5316c7eaa4954381556dd | 0 | ansible/roles/docker_network | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/docker_network/tasks/main.yml",
"content": "---\n# tasks file for ansible/roles/docker_network\n- name: Create Docker network\n community.docker.docker_network:\n name: my_app_network\n state: present\n vars:\n ansible_python_interpreter: /opt/docker_venv/bin/python\n\n",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 228,
"all_permissive": false
} |
ansible_role | buhsnn/TP3 | 6aba6aced064670d42b5316c7eaa4954381556dd | 0 | ansible/roles/front | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/front/tasks/main.yml",
"content": "- name: Run front-end container\n community.docker.docker_container:\n name: my_front\n image: buhsnn/tp-devops-front:latest\n state: started\n restart_policy: always\n published_ports:\n - \"3000:80\"\n networks:\n - n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 257,
"all_permissive": false
} |
ansible_role | buhsnn/TP3 | 6aba6aced064670d42b5316c7eaa4954381556dd | 0 | ansible/roles/proxy | 405 | [
"no_license"
] | [
{
"path": "ansible/roles/proxy/tasks/main.yml",
"content": "---\n# tasks file for ansible/roles/proxy\n- name: Run HTTPD proxy container\n community.docker.docker_container:\n name: my_proxy\n image: buhsnn/tp-devops-http-server:latest\n state: started\n restart_policy: always\n published_po... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 372,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/desktop_environment | 405 | [
"no_license"
] | [
{
"path": "roles/desktop_environment/tasks/git.yml",
"content": "- package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - git\n - tk # add support for git gui\n become: yes\n\n- template:\n src: git/{{ item }}\n dest: ~/.{{ item }}\n mode: 0444\n with_items:\n - gitconfig\n ... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 4457,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/hp_officejet_pro_8600 | 405 | [
"no_license"
] | [
{
"path": "roles/hp_officejet_pro_8600/tasks/main.yml",
"content": "- name: install packages for HP 8600 printer\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - cups\n - hplip\n - system-config-printer\n become: yes\n\n- name: allow 'wheel' group members to administer printe... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 363,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/java | 405 | [
"no_license"
] | [
{
"path": "roles/java/tasks/main.yml",
"content": "- name: install oracle jdk7\n shell: 'curl -L -H \"Cookie: oraclelicense=accept-securebackup-cookie\" http://download.oracle.com/otn-pub/java/jdk/7u79-b15/jdk-7u79-linux-x64.tar.gz | tar -zx -C /opt'\n args:\n creates: /opt/jdk1.7.0_79/bin/java\n beco... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1567,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/macbook_keyboard_fixes | 405 | [
"no_license"
] | [
{
"path": "roles/macbook_keyboard_fixes/tasks/main.yml",
"content": "- name: configure hid apple module\n template:\n src: hid_apple.conf\n dest: /etc/modprobe.d/hid_apple.conf\n mode: 0444\n become: yes\n\n- name: customize keymap\n template:\n src: Xmodmap\n dest: ~/.Xmodmap\n mode: 0... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 385,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/system | 405 | [
"no_license"
] | [
{
"path": "roles/system/tasks/powermanagement.yml",
"content": "- name: install power management tools\n package:\n name: \"{{ item }}\"\n state: present\n with_items:\n - lm_sensors\n - thermald\n become: yes\n\n- name: create thermald service unit override dir\n file:\n path: /etc/systemd/s... | {
"task_files": 8,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 5676,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/vpn | 405 | [
"no_license"
] | [
{
"path": "roles/vpn/tasks/main.yml",
"content": "- name: AUR package openfortivpn\n aur_package:\n name: openfortivpn\n\n\n- name: install vpn systemd unit\n template:\n src: openfortivpn.service\n dest: /etc/systemd/system/vpn.service\n mode: 0444\n become: yes\n",
"license_type": "no_l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 219,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/webcam | 405 | [
"no_license"
] | [
{
"path": "roles/webcam/tasks/main.yml",
"content": "- name: ensure AUR package 'bcwc-pcie-git' is installed\n aur_package:\n name: bcwc-pcie-git\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 95
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 95,
"all_permissive": false
} |
ansible_role | jeremiehuchet/dotfiles | 79b3affcc0d77aa6e54d83055242a8984e0ee7c3 | 0 | roles/zsh | 405 | [
"no_license"
] | [
{
"path": "roles/zsh/templates/zshrc",
"content": "# {{ generated_tag }}\n\nHISTFILE=~/.histfile\nHISTSIZE=1000\nSAVEHIST=10000\n\nDEFAULT_USER=jeremie\nZSH=/usr/share/oh-my-zsh/\nZSH_THEME=\"agnoster\"\nCASE_SENSITIVE=\"true\"\nDISABLE_AUTO_UPDATE=\"true\"\n\nplugins=(\n colored-man-pages\n colorize\n g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1625,
"all_permissive": false
} |
ansible_role | MonicaAntal/Test | a03cca3592cc40ee98ac4e45e3375c583595bfe5 | 0 | roles/do_something | 405 | [
"no_license"
] | [
{
"path": "roles/do_something/vars/main.yml",
"content": "--- \nfirst_name: <NAME>\nlast_name: Antal\ninsert_path: \"/home/vagrant/nohup.out\"\nwith_items:\n - 'chestii'\n - 'alte chestii'\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 125
},
{
"path": "roles/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 243,
"all_permissive": false
} |
ansible_role | cbath/udacity-iac | 0cd79dfc07e07d07ce7a7c82a73f541e37cba9e2 | 0 | project_starter/ansible/roles/deploy | 405 | [
"no_license"
] | [
{
"path": "project_starter/ansible/roles/deploy/tasks/main.yml",
"content": "---\r\n- name: \"update apt packages.\"\r\n become: yes\r\n apt:\r\n update_cache: yes\r\n\r\n- name: \"upgrade packages\"\r\n become: yes\r\n apt:\r\n upgrade: yes\r\n\r\n- name: remove dependencies that are no longer re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 964,
"all_permissive": false
} |
ansible_role | hsjhita1/QAProject2 | e46af4274ae7535ed8b1299b615830ddec4bf727 | 1 | roles/docker | 405 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yaml",
"content": "- name: Get Docker key\n apt_key:\n url: https://download.docker.com/linux/ubuntu/gpg\n state: present\n tags: docker\n- name: Add Docker packages to Repository\n apt_repository:\n repo: deb [arch=amd64] https://download.docker.com/linux/ubun... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 412,
"all_permissive": false
} |
ansible_role | hsjhita1/QAProject2 | e46af4274ae7535ed8b1299b615830ddec4bf727 | 1 | roles/docker-swarm-workers | 405 | [
"no_license"
] | [
{
"path": "roles/docker-swarm-workers/tasks/main.yaml",
"content": "---\n - name: Add Workers to the Swarm\n shell: \"docker swarm join --token {{ hostvars['manager_node']['worker_token']['stdout'] }} {{ hostvars['manager_node']['ansible_default_ipv4']['address'] }}:2377\"\n ignore_errors: true\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 245,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.