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
M-Ghani97/fyp-ansible
b001803166e151608b1af0bca7a102b17bc63c6e
1
roles/horizon
7,394
[ "no_license" ]
[ { "path": "roles/horizon/tasks/main.yml", "content": "- name: installing openstack-dashboard\n apt:\n name: openstack-dashboard\n state: present\n\n- name: setting up conf file\n replace:\n path: /etc/openstack-dashboard/local_settings.py\n regexp: 'OPENSTACK_HOST\\s+\\=\\s+\"127\\.0\\.0\\.1\"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1620, "all_permissive": false }
ansible_role
M-Ghani97/fyp-ansible
b001803166e151608b1af0bca7a102b17bc63c6e
1
roles/keystone
7,394
[ "no_license" ]
[ { "path": "roles/keystone/files/temp_env.sh", "content": "#!/bin/bash\n$ export OS_USERNAME=admin\n$ export OS_PASSWORD=<PASSWORD>\n$ export OS_PROJECT_NAME=admin\n$ export OS_USER_DOMAIN_NAME=Default\n$ export OS_PROJECT_DOMAIN_NAME=Default\n$ export OS_AUTH_URL=http://controller:5000/v3\n$ export OS_IDENT...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3987, "all_permissive": false }
ansible_role
M-Ghani97/fyp-ansible
b001803166e151608b1af0bca7a102b17bc63c6e
1
roles/neutron
7,394
[ "no_license" ]
[ { "path": "roles/neutron/tasks/main.yml", "content": "- name: create DB\n mysql_db:\n name: neutron\n state: present\n login_unix_socket: /var/run/mysqld/mysqld.sock\n\n- name: adding user and granting privileges\n mysql_user:\n name: neutron\n password: <PASSWORD>\n priv: \"neutron.*:AL...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 8316, "all_permissive": false }
ansible_role
M-Ghani97/fyp-ansible
b001803166e151608b1af0bca7a102b17bc63c6e
1
roles/nova
7,394
[ "no_license" ]
[ { "path": "roles/nova/tasks/compute.yml", "content": "---\n- name: Installing Nova-Compute\n apt:\n name: nova-compute\n state: present\n\n- name: Deleting Default Configuration\n lineinfile:\n path: /etc/nova/nova.conf\n regexp: '\\[DEFAULT\\]'\n state: absent\n backup: yes\n\n \n- nam...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 8073, "all_permissive": false }
ansible_role
M-Ghani97/fyp-ansible
b001803166e151608b1af0bca7a102b17bc63c6e
1
roles/set_env_compute
7,394
[ "no_license" ]
[ { "path": "roles/set_env_compute/templates/hosts.j2", "content": "127.0.0.1 localhost\n{{ansible_default_ipv4.address}} compute\n10.81.1.45 controller", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "roles/set_env_compute/templates/interfaces.j2", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1685, "all_permissive": false }
ansible_role
M-Ghani97/fyp-ansible
b001803166e151608b1af0bca7a102b17bc63c6e
1
roles/set_env_controller
7,394
[ "no_license" ]
[ { "path": "roles/set_env_controller/templates/99-openstack.cnf.j2", "content": "[client]\ndefault-character-set = utf8\n\n[mysqld]\nbind-address = {{ansible_default_ipv4.address}}\ndefault-storage-engine = innodb\ninnodb_file_per_table = on\ninit-connect = 'SET NAMES utf8'\nmax_connections = 4096\ncollation...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 6939, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-admin-auth
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-admin-auth/tasks/main.yml", "content": "---\n- include_tasks: unix.yml\n when: ansible_os_family != 'Windows'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "ansible/ci-playbooks/roles/ci-admin-auth/tasks...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 732, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-admin-user
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-admin-user/tasks/main.yml", "content": "---\n- include_tasks: unix.yml\n when: ansible_os_family != 'Windows'\n\n- include_tasks: darwin.yml\n when: ansible_os_family == 'Darwin'\n\n- include_tasks: linux.yml\n when: ansible_system == 'Linux'\n\n- include_tasks: d...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 2348, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-base-setup
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-base-setup/tasks/linux.yml", "content": "---\n- name: ci-base-setup (linux) | Create tools directory\n file:\n path: \"{{ tools_location }}/bin\"\n state: directory\n become: yes\n\n- name: ci-base-setup (linux) | Add tools/bin to global PATH\n lineinfile:\n...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 5349, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-data-repo
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-data-repo/README.md", "content": "CI data repository\n==================\n\nCreate ci-data user to own the data on the local mount. Mount\nome-data-repo using the read-only hslave-x account.\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n-------------...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 2233, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-jenkins-service
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-jenkins-service/tasks/main.yml", "content": "---\n- include_tasks: windows.yml\n when: ansible_os_family == 'Windows'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 72 }, { "path": "ansible/ci-playbooks/roles/ci-jenkins-...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2146, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-jenkins-user
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-jenkins-user/tasks/windows.yml", "content": "---\n- name: ci-jenkins-user (windows) | Add Jenkins user\n win_user:\n name: \"{{ ci_jenkins_user }}\"\n password: \"{{ <PASSWORD> }}\"\n description: Jenkins build slave\n state: present\n groups:\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1484, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-jenkins-workspace
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-jenkins-workspace/tasks/main.yml", "content": "---\n- include_tasks: linux.yml\n when: ansible_system == 'Linux'\n\n- include_tasks: freebsd.yml\n when: ansible_os_family == 'FreeBSD'\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2556, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/ci-scratch-storage
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/ci-scratch-storage/tasks/linux.yml", "content": "---\n- name: ci-scratch-storage (linux) | Create volume group\n lvg:\n pvs: /dev/vdb\n state: present\n vg: scratch\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3234, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/cygwin
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/cygwin/README.md", "content": "Package: cygwin\n===============\n\nInstall cygwin (Windows only)\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 884, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-cmake
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-cmake/tasks/main.yml", "content": "---\n- include_tasks: linux.yml\n when: ansible_system == 'Linux'\n\n- include_tasks: freebsd.yml\n when: ansible_os_family == 'FreeBSD'\n\n- include_tasks: windows.yml\n when: ansible_os_family == 'Windows'\n", "license_typ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 2528, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-cpp-libs
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-cpp-libs/tasks/main.yml", "content": "---\n- include_tasks: debian.yml\n when: ansible_os_family == 'Debian'\n\n- include_tasks: freebsd.yml\n when: ansible_os_family == 'FreeBSD'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes":...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2152, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-cpp-tools
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-cpp-tools/tasks/freebsd.yml", "content": "---\n- name: pkg-cpp-tools (freebsd) | Install C++ build tools\n pkgng:\n name: binutils,gmake\n state: present\n become: yes\n\n- name: pkg-cpp-tools (freebsd) | Install GNU Autotools\n pkgng:\n name: autoconf,a...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1342, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-devtoolset-4
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-devtoolset-4/tasks/main.yml", "content": "---\n- include_tasks: centos.yml\n when: ansible_distribution == 'CentOS'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "ansible/ci-playbooks/roles/pkg-devtools...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 250, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-doxygen
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-doxygen/tasks/debian.yml", "content": "---\n- name: doxygen (debian) | Install Doxygen\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - doxygen\n - graphviz\n become: yes\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 581, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-git
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-git/tasks/redhat.yml", "content": "---\n- name: git (redhat) | Install Git\n yum:\n name: git\n state: latest\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 92 }, { "path": "ansible/ci-playbooks/rol...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 1678, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-java-tools
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-java-tools/defaults/main.yml", "content": "---\nant:\n version: \"1.10.1\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "ansible/ci-playbooks/roles/pkg-java-tools/tasks/freebsd.yml", "content": "--...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2184, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-jdk8
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-jdk8/tasks/windows.yml", "content": "---\n- name: pkg-jdk8 (windows) | Check to see if java is installed\n win_stat: path=\"C:/Program Files/ojdkbuild/java-{{ jdk8.windows.version }}-openjdk-{{ jdk8.windows.fullversion }}/bin/java.exe\"\n register: java_installed\...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3009, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-jenkins-tools
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-jenkins-tools/tasks/freebsd.yml", "content": "---\n- name: pkg-jenkins-tools (freebsd) | Install shells\n pkgng:\n name: bash\n state: present\n become: yes\n\n- name: pkg-jenkins-tools (freebsd) | Install archival tools\n pkgng:\n name: gtar\n state:...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1545, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-ninja
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-ninja/README.md", "content": "Package: ninja\n==============\n\nInstall ninja\n\n- FreeBSD (install ninja)\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2216, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-nssm
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-nssm/README.md", "content": "Package: nssm\n==============\n\nInstall nssm (service manager for Windows)\n\n- windows (install nssm)\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1145, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-python27
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-python27/defaults/main.yml", "content": "---\npython27:\n windows:\n version: \"2.7.13\"\n installer_options: \"ALLUSERS=1 ADDLOCAL=DefaultFeature,SharedCRT,Extensions,TclTk,Documentation,Tools,pip_feature,Testsuite\"\n", "license_type": "no_license", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1413, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-sphinx
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-sphinx/meta/main.yml", "content": "---\ndependencies:\n - { role: pkg-python27 }", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "ansible/ci-playbooks/roles/pkg-sphinx/README.md", "content": "Package: s...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 919, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-vs2015
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-vs2015/README.md", "content": "Package: vs2015\n===============\n\nInstall Visual Studio 2015 Build Tools (Windows only)\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detected_l...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1152, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-vs2017
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-vs2017/tasks/windows.yml", "content": "---\n- name: vs2017 (windows) | Check if Visual Studio 2017 Build Tools are installed\n win_stat: path='C:/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/VC/Auxiliary/Build/vcvarsall.bat'\n register: vs2017_insta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 921, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/pkg-zip
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/pkg-zip/README.md", "content": "Package: zip\n============\n\nInstall zip and unzip\n\n- FreeBSD (install zip)\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 557, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/system-base-update
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/system-base-update/handlers/unix.yml", "content": "---\n- name: reboot\n command: shutdown -r now \"ansible triggered restart\"\n become: yes\n\n- name: wait for restart\n local_action:\n module: wait_for\n host: \"{{ inventory_hostname }}\"\n port: 22\n ...
{ "task_files": 6, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 2238, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/ci-playbooks/roles/system-package-update
7,394
[ "no_license" ]
[ { "path": "ansible/ci-playbooks/roles/system-package-update/tasks/yum.yml", "content": "---\n- name: system-package-update (yum) | Upgrade all packages\n yum:\n name: '*'\n state: latest\n become: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 116 }, { ...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2553, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/active-directory-join
7,394
[ "no_license" ]
[ { "path": "ansible/roles/active-directory-join/templates/krb5-conf.j2", "content": "[logging]\ndefault = FILE:/var/log/krb5libs.log\nkdc = FILE:/var/log/krb5kdc.log\nadmin_server = FILE:/var/log/kadmind.log\n\n[libdefaults]\ndefault_realm = {{ active_directory_realm }}\ndns_lookup_realm = true\ndns_lookup_k...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 6242, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/active-directory-samba-share
7,394
[ "no_license" ]
[ { "path": "ansible/roles/active-directory-samba-share/handlers/main.yml", "content": "---\n# Handlers for active-directory-samba-share\n\n- name: restart smb\n become: yes\n service:\n name: smb\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2779, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/ansible
7,394
[ "no_license" ]
[ { "path": "ansible/roles/ansible/tasks/main.yml", "content": "---\n# tasks file for roles/redis\n\n- name: install ansible\n become: yes\n yum:\n name: ansible\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 116 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 116, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/debug-dumpallvars
7,394
[ "no_license" ]
[ { "path": "ansible/roles/debug-dumpallvars/templates/dumpall.j2", "content": "Module Variables (\"vars\"):\n--------------------------------\n{{ vars | default('<undefined>') | to_nice_json }}\n\nEnvironment Variables (\"environment\"):\n--------------------------------\n{{ environment | default('<undefined...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1497, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/dell-update
7,394
[ "no_license" ]
[ { "path": "ansible/roles/dell-update/README.md", "content": "Dell Update\n===========\n\nRun Dell Linux driver updates such as those for the BIOS and iDRAC.\n\nAssumes the update package takes the following options (`--help`):\n\n Command-line options for the Update Package\n\n Usage: <package name> [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3218, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/devtoolset-4
7,394
[ "no_license" ]
[ { "path": "ansible/roles/devtoolset-4/README.md", "content": "devtoolset-4\n============\n\nRHSCL devtoolset-4 toolchain.\n\nRequirements\n------------\n\nNone.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 139 }, ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 307, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/docker-dns-client
7,394
[ "no_license" ]
[ { "path": "ansible/roles/docker-dns-client/templates/systemd-docker-registrator.j2", "content": "[Unit]\nDescription=Docker registrator\nRequires=docker.service\n# TODO: Should work with a remote etcd daemon\nRequires=docker-{{ docker_dns.etcd }}.service\nAfter=docker-{{ docker_dns.etcd }}.service\n\n[Servi...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2174, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/docker-dns-server
7,394
[ "no_license" ]
[ { "path": "ansible/roles/docker-dns-server/README.md", "content": "Docker DNS Server\n=================\n\nSetup a dynamic DNS service for Docker containers. This can optionally be defined as the authority for a subdomain in an upstread DNS server.\n\nRole Variables\n--------------\n\nAlthough defaults are ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3387, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/gpfs
7,394
[ "no_license" ]
[ { "path": "ansible/roles/gpfs/tasks/gpfs-build.yml", "content": "---\n# Extract GPFS packages, compile kernel module, download all RPMs so they can be deployed to other hosts\n\n- name: gpfs | current kernel version\n fail:\n msg: \"Current kernel {{ ansible_kernel }} must match specified GPFS kernel {{...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 10, "total_bytes": 22346, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/jenkinsslave
7,394
[ "no_license" ]
[ { "path": "ansible/roles/jenkinsslave/tasks/main.yml", "content": "---\n# Setup a Jenkins-CI slave\n\n- name: jenkins | create user\n become: yes\n user:\n name: \"{{ jenkinsuser }}\"\n append: yes\n\n- name: jenkins | jenkins workspace\n become: yes\n file:\n path: \"{{ jenkinsworkdir }}\"\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 4227, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/network
7,394
[ "no_license" ]
[ { "path": "ansible/roles/network/templates/etc-sysconfig-network-scripts-ifcfg-disabled.j2", "content": "DEVICE={{ item }}\nBOOTPROTO=none\nONBOOT=no\nNM_CONTROLLED=no\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "ansible/roles/network/tasks/ma...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 5568, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/nfs-ganesha-share
7,394
[ "no_license" ]
[ { "path": "ansible/roles/nfs-ganesha-share/defaults/main.yml", "content": "---\n# defaults file for roles/nfs-gaensha-share\n\n# A list of shares, see README.md\nnfs_ganesha_shares: []\n\n# Logging level, leave unset for default\nnfs_ganesha_default_log_level:\n", "license_type": "no_license", "dete...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3556, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/omero-build
7,394
[ "no_license" ]
[ { "path": "ansible/roles/omero-build/README.md", "content": "OMERO Build\n===========\n\nMost build dependencies (except for C++).\n\nRequirements\n------------\n\nDepends on basedeps, java, ice.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3734, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/omero-build-cpp
7,394
[ "no_license" ]
[ { "path": "ansible/roles/omero-build-cpp/tasks/main.yml", "content": "---\n# tasks file for roles/omero-build-cpp\n\n- name: system packages | install C++ build tools\n become: yes\n yum:\n name: \"@Development Tools\"\n state: present\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 364, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/omero-scripts-dependencies
7,394
[ "no_license" ]
[ { "path": "ansible/roles/omero-scripts-dependencies/README.md", "content": "OMERO Scripts Dependencies\n==========================\n\nInstall the dependencies required by the OMERO scripts\n\nNote that the role is incomplete for CentOS 7.\nmencoder is not installed so the make_movie script\ncannot be used. ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1335, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/omero-web-apps-build-dependencies
7,394
[ "no_license" ]
[ { "path": "ansible/roles/omero-web-apps-build-dependencies/README.md", "content": "OMERO Web Applications Build Dependencies\n==========================================\n\nInstall the dependencies required to build some\nof the Web applications e.g. OMERO.figure and OMERO.iviewer\n\nAuthor Information\n----...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1038, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/openldap-devel
7,394
[ "no_license" ]
[ { "path": "ansible/roles/openldap-devel/tasks/main.yml", "content": "---\n# tasks file for roles/openldap-devel\n\n- name: install openldap-devel\n become: yes\n yum:\n name: \"{{ item }}\"\n state: present\n with_items:\n - openldap-devel\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 172, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/openstack-prepare
7,394
[ "no_license" ]
[ { "path": "ansible/roles/openstack-prepare/tasks/main.yml", "content": "---\n# Setup system and install Packstack\n\n- name: openstack | Setup RDO repository\n become: yes\n yum:\n # pkg: https://www.rdoproject.org/repos/rdo-release.rpm\n pkg: https://repos.fedorapeople.org/repos/openstack/openstack...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1315, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/python-devel
7,394
[ "no_license" ]
[ { "path": "ansible/roles/python-devel/tasks/main.yml", "content": "---\n# tasks file for roles/python-devel\n\n- name: system packages | install epel repo\n become: yes\n yum:\n name: epel-release\n state: present\n\n- name: install python-devel\n become: yes\n yum:\n name: \"{{ item }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/server-swap
7,394
[ "no_license" ]
[ { "path": "ansible/roles/server-swap/tasks/main.yml", "content": "---\n# tasks file for roles/server-swap\n\n- name: sysctl | set vm swappiness\n become: yes\n sysctl:\n ignoreerrors: no\n reload: yes\n state: present\n name: vm.swappiness\n value: \"{{ sysctl_vm_swappiness }}\"\n", "li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 495, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/sphinx-build
7,394
[ "no_license" ]
[ { "path": "ansible/roles/sphinx-build/README.md", "content": "Sphinx documentation build\n==========================\n\nDocumentation build dependencies.\n\nRequirements\n------------\n\nDepends on python.\n\nAuthor Information\n------------------\n\n<EMAIL>\n", "license_type": "no_license", "detect...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 485, "all_permissive": false }
ansible_role
ome/infrastructure
e37b70ae1e2098cf8651bf1d462d3fafd89706c1
21
ansible/roles/yum-excludes
7,394
[ "no_license" ]
[ { "path": "ansible/roles/yum-excludes/README.md", "content": "Yum Excludes\n============\n\nManage a list of packages the are excluded from updates.\nThis role assumes it has full control of the `excludes=` line in `/etc/yum.conf`, manual changes will be lost.\n\n\nRole Variables\n--------------\n\nOptional...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 655, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/apache
7,394
[ "no_license" ]
[ { "path": "roles/apache/templates/httpd.conf.j2", "content": "{{ ansible_managed | comment }}\n\nServerRoot \"/etc/httpd\"\nListen 80\n\nInclude conf.modules.d/*.conf\n\nUser apache\nGroup apache\n\nServerAdmin {{ admin_email }}\n\n<Directory />\n AllowOverride none\n Require all denied\n</Directory>\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3010, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/base
7,394
[ "no_license" ]
[ { "path": "roles/base/vars/main.yml", "content": "---\npassword_database_file: \"{{ lookup('env', 'UMTS_PW_DB_PATH') }}\"\npassword_database_password: \"{{ lookup('env', 'UMTS_PW_DB_PASSWORD') }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 142 }, { "path": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 569, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/mysql
7,394
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: MySQL client and libs\n yum:\n name:\n - mysql\n - mysql-devel\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 104 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 104, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/nodejs
7,394
[ "no_license" ]
[ { "path": "roles/nodejs/tasks/main.yml", "content": "---\n- name: Remove conflicting packages\n yum:\n state: absent\n pkg:\n - npm\n - nodejs-full-i18n\n\n- name: Nodesource repository\n yum_repository:\n name: nodesource-nodejs\n description: Node.js Packages for Linux RPM based di...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1524, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/passenger
7,394
[ "no_license" ]
[ { "path": "roles/passenger/meta/main.yml", "content": "---\ndependencies:\n - role: apache-handler\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 }, { "path": "roles/passenger/tasks/main.yml", "content": "---\n- name: Enable EPEL\n yum:\n name: \"htt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 856, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/private-pub
7,394
[ "no_license" ]
[ { "path": "roles/private-pub/meta/argument_specs.yml", "content": "---\nargument_specs:\n main:\n options:\n private_pub_workdir:\n required: true\n type: str\n description: The working directory where private_pub runs\n", "license_type": "no_license", "detected_license...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 741, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/rails-app
7,394
[ "no_license" ]
[ { "path": "roles/rails-app/tasks/logrotate.yml", "content": "---\n- name: Logrotate configuration\n template:\n src: logrotate.conf.j2\n dest: \"/etc/logrotate.d/{{ rails_app_name }}\"\n owner: root\n group: root\n mode: 0644\n validate: logrotate -d %s\n", "license_type": "no_license...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 9452, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/ruby
7,394
[ "no_license" ]
[ { "path": "roles/ruby/vars/main.yml", "content": "---\nruby_install_version: '0.10.1'\nruby_version: '3.3.8'\nruby_make_default: false\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "roles/ruby/tasks/ruby.yml", "content": "---\n- name: Rubies...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2201, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/shibboleth
7,394
[ "no_license" ]
[ { "path": "roles/shibboleth/tasks/main.yml", "content": "---\n- name: Shibboleth repository\n yum_repository:\n name: shibboleth\n description: Shibboleth\n mirrorlist: \"http://shibboleth.net/cgi-bin/mirrorlist.cgi/rockylinux{{ ansible_facts['distribution_major_version'] }}\"\n gpgcheck: true\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 10224, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/transportation-users
7,394
[ "no_license" ]
[ { "path": "roles/transportation-users/tasks/main.yml", "content": "---\n- name: Admin group\n group:\n name: admin\n state: present\n\n- name: Deploy group\n group:\n name: deploy\n state: present\n\n- name: Allow admins to sudo\n copy:\n src: local_admin_sudo\n dest: /etc/sudoers.d/loc...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1484, "all_permissive": false }
ansible_role
umts/umts-ansible
ff6b21cd6e2397abf5f304db210223834a3daef2
0
roles/umaps-scan-share
7,394
[ "no_license" ]
[ { "path": "roles/umaps-scan-share/tasks/main.yml", "content": "---\n- name: Include base vars\n include_vars: \"{{ role_path }}/../base/vars/main.yml\"\n\n- name: Required packages\n package:\n name: cifs-utils\n state: present\n\n- name: Scans directory\n file:\n path: /mnt/scan_database\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1890, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/bitlbee
7,394
[ "no_license" ]
[ { "path": "roles/bitlbee/tasks/main.yml", "content": "---\n- name: Install bitlbee package\n yum:\n state: installed\n update_cache: true\n name:\n - bitlbee\n - bitlbee-discord\n - bitlbee-facebook\n\n- name: Create bitlbee config directory\n file:\n path: /etc/bitlbee\n sta...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4377, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/common
7,394
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: 'Setting hostname'\n hostname:\n name: '{{ hostname }}'\n tags: admin\n\n- include_tasks: pi.yml\n when: ansible_distribution == 'Debian'\n\n- include_tasks: centos.yml\n when: ansible_distribution in ['CentOS', 'Red Hat Enterprise Lin...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 3902, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/irc
7,394
[ "no_license" ]
[ { "path": "roles/irc/templates/relay.conf.j2", "content": "#\n# weechat -- relay.conf\n#\n# WARNING: It is NOT recommended to edit this file by hand,\n# especially if WeeChat is running.\n#\n# Use /set or similar command to change settings in WeeChat.\n#\n# For more info, see: https://weechat.org/doc/quicks...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 5545, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/metrics
7,394
[ "no_license" ]
[ { "path": "roles/metrics/vars/prometheus.yml", "content": "---\nprometheus_web_listen_address: '0.0.0.0:9090'\nprometheus_targets:\n node:\n - targets:\n - 'athena:9100'\n - 'hephaestus:9100'\n - 'notthe.cloud:9100'\nprometheus_scrape_configs:\n - job_name: 'prometheus'\n metric...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3627, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/nas
7,394
[ "no_license" ]
[ { "path": "roles/nas/files/plex_update.sh", "content": "#!/usr/bin/env bash\n\nmkdir /volume1/tmp/plex >/dev/null 2>&1\nrm -rf /volume1/tmp/plex/*.spk\n\ntoken=$(grep -oP 'PlexOnlineToken=\"\\K[^\"]+' /volume1/Plex/Library/Application\\ Support/Plex\\ Media\\ Server/Preferences.xml)\n\njq=$(curl -s url=\"ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1954, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/nginx
7,394
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Install NGINX\n include_role:\n name: nginxinc.nginx\n vars:\n nginx_modules: []\n nginx_logrotate_conf_enable: true\n\n- name: Create default html dir\n tags: nginx\n file:\n name: '/var/www/default'\n state: directory\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2905, "all_permissive": false }
ansible_role
butlerx/ansible
a60fb557b0f2b048631bc01c22bf59079f2aa57c
0
roles/pihole
7,394
[ "no_license" ]
[ { "path": "roles/pihole/templates/pihole-exporter.service.j2", "content": "{{ ansible_managed | comment }}\n\n[Unit]\nDescription=pihole metrics exporter\nAfter=network.target\n\n[Service]\nType=simple\nEnvironment=\"GOMAXPROCS={{ ansible_processor_vcpus|default(ansible_processor_count) }}\"\nExecStart=/usr...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 6403, "all_permissive": false }
ansible_role
aratik711/wh_nodejs_app
ab7b8c1b90316e56541e42e88dd1dd34c1575022
0
wh_ansible/roles/nginx
7,394
[ "no_license" ]
[ { "path": "wh_ansible/roles/nginx/tasks/configure_nginx.yml", "content": "---\n\n- name: Copy defaults file\n template:\n src: default.j2\n dest: /etc/nginx/sites-available/default\n\n- name: Copy configuration file for node js\n template:\n src: ts_app.conf.j2\n dest: /etc/nginx/conf.d/ts_app...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 925, "all_permissive": false }
ansible_role
aratik711/wh_nodejs_app
ab7b8c1b90316e56541e42e88dd1dd34c1575022
0
wh_ansible/roles/nodejs
7,394
[ "no_license" ]
[ { "path": "wh_ansible/roles/nodejs/tasks/start-app.yml", "content": "---\n\n- name: Copy Timestamp application\n template:\n src: ts_app.js.j2\n dest: \"/home/{{ app_user }}/ts_app.js\"\n\n- name: Start application\n shell: node ts_app.js &\n async: 5\n poll: 0", "license_type": "no_license", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 1106, "all_permissive": false }
ansible_role
pyonnuka/ansible-sample
96b2cb973ec49bbdccab50c80d055ffd07d88b04
1
roles/common
7,394
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: install git\n yum: name=git\n sudo: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 49, "all_permissive": false }
ansible_role
pyonnuka/ansible-sample
96b2cb973ec49bbdccab50c80d055ffd07d88b04
1
roles/nginx
7,394
[ "no_license" ]
[ { "path": "roles/nginx/templates/nginx.conf.j2", "content": "server {\n listen 80;\n server_name example.org;\n location / {\n root /var/www/example.org;\n index index.html index.htm;\n }\n}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1212, "all_permissive": false }
ansible_role
pyonnuka/ansible-sample
96b2cb973ec49bbdccab50c80d055ffd07d88b04
1
roles/ruby
7,394
[ "no_license" ]
[ { "path": "roles/ruby/tasks/rbenv.yml", "content": "- name: git clone https://github.com/sstephenson/rbenv.git ~/.rbenv\n git: repo=https://github.com/sstephenson/rbenv.git\n dest=~/.rbenv\n version=master\n tags:\n - ruby\n - rbenv\n\n- name: add rbenv initialization to profile\n templ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 373, "all_permissive": false }
ansible_role
miteshget/webapp
888ffb39d8775a2caccb97be003e702a84880c80
0
roles/apache
7,394
[ "no_license" ]
[ { "path": "roles/apache/templates/index.php.j2", "content": "<!DOCTYPE html>\n<html>\n<head>\n<title>Ansible GitOps Integration Lab</title>\n</head>\n<body>\n<center>\n<?php\n\t$db=mysqli_connect(\"{{ hostvars[groups['appdbs'][0]]['ansible_host'] }}\",\"{{ mysql_info.user }}\",\"{{ mysql_info.password }}\"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2098, "all_permissive": false }
ansible_role
miteshget/webapp
888ffb39d8775a2caccb97be003e702a84880c80
0
roles/firewall
7,394
[ "no_license" ]
[ { "path": "roles/firewall/tasks/main.yml", "content": "---\n\n- name: Install Firewalld\n yum:\n name: firewalld\n state: latest\n \n- name: Start firewalld\n service:\n name: firewalld\n enabled: yes\n state: started\n \n- name: Open service port\n when: firewall_services is defined\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 900, "all_permissive": false }
ansible_role
miteshget/webapp
888ffb39d8775a2caccb97be003e702a84880c80
0
roles/haproxy
7,394
[ "no_license" ]
[ { "path": "roles/haproxy/defaults/main.yml", "content": "---\n\nhaproxy_packages:\n - haproxy\n\nhaproxy_services: \n - haproxy\n\n...", "license_type": "no_license", "detected_licenses": [], "size_bytes": 71 }, { "path": "roles/haproxy/tasks/main.yml", "content": "\n---\n\n- name:...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 703, "all_permissive": false }
ansible_role
miteshget/webapp
888ffb39d8775a2caccb97be003e702a84880c80
0
roles/mysql-server
7,394
[ "no_license" ]
[ { "path": "roles/mysql-server/tasks/main.yml", "content": "---\n\n- name: Install mysql\n yum: \n name: \"{{ __package }}\"\n state: latest\n loop: \"{{ mysql_packages }}\"\n loop_control:\n loop_var: __package\n\n- name: Start mysql \n service:\n name: \"{{ __service }}\"\n enabled: true...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 989, "all_permissive": false }
ansible_role
brianasz/brianasz.com
cb758004d26e23d37843970ea3b1d6972384ed2c
0
brianasz-configuration/roles/httpd
7,394
[ "no_license" ]
[ { "path": "brianasz-configuration/roles/httpd/tasks/main.yml", "content": "---\n# tasks file for httpd\n\n- name: Install required software\n yum:\n name: \n - \"{{ item }}\"\n state: present\n with_items:\n - httpd\n\n- name: Optimize your httpd installation and Update httpd.conf to add sit...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2189, "all_permissive": false }
ansible_role
brianasz/brianasz.com
cb758004d26e23d37843970ea3b1d6972384ed2c
0
brianasz-configuration/roles/mysql
7,394
[ "no_license" ]
[ { "path": "brianasz-configuration/roles/mysql/tasks/main.yml", "content": "---\n# Tasks file for mysql\n- name: Install required software\n yum:\n name:\n - \"{{ item }}\"\n state: present\n sudo: yes\n with_items:\n - mariadb-server\n - MySQL-python\n\n- name: Start mysql server and ena...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 671, "all_permissive": false }
ansible_role
brianasz/brianasz.com
cb758004d26e23d37843970ea3b1d6972384ed2c
0
brianasz-configuration/roles/php
7,394
[ "no_license" ]
[ { "path": "brianasz-configuration/roles/php/tasks/main.yml", "content": "---\n# Tasks file for php\n- name: Install php extensions\n yum:\n name:\n - \"{{ item }}\"\n state: present\n sudo: yes\n with_items:\n - php\n - php-pear\n - php-mysql\n\n# Edit /etc/php.ini for better error me...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 326, "all_permissive": false }
ansible_role
brianasz/brianasz.com
cb758004d26e23d37843970ea3b1d6972384ed2c
0
brianasz-configuration/roles/server
7,394
[ "no_license" ]
[ { "path": "brianasz-configuration/roles/server/tasks/main.yml", "content": "---\n# tasks file for server\n#####################################################\n# Change root password\n- name: Change root password\n user: \n name: root \n password: \"{{ <PASSWORD> }}\"\n\n# Yum update\n- name: Update...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2891, "all_permissive": false }
ansible_role
brianasz/brianasz.com
cb758004d26e23d37843970ea3b1d6972384ed2c
0
brianasz-configuration/roles/wordpress
7,394
[ "no_license" ]
[ { "path": "brianasz-configuration/roles/wordpress/tasks/main.yml", "content": "---\n# tasks file for wordpress\n\n- name: Creating directory structure\n file:\n path: /var/www\n owner: \"{{ WEB_DIR_OWNER }}\"\n group: \"{{ WEB_DIR_GROUP }}\"\n state: directory\n \n- name: Creating worpdress ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 695, "all_permissive": false }
ansible_role
balaguru-20/expense-ansible-roles
c5c6591f5b72b62c490195489904b10d8ec9dddc
0
roles/backend
7,394
[ "no_license" ]
[ { "path": "roles/backend/tasks/main.yaml", "content": "- name: disable current module\n ansible.builtin.command: dnf module disable nodejs -y # In the command module we can directly use linux commands\n\n- name: enable nodejs 20\n ansible.builtin.command: dnf module enable nodejs:20 -y\n\n- name: install ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2090, "all_permissive": false }
ansible_role
balaguru-20/expense-ansible-roles
c5c6591f5b72b62c490195489904b10d8ec9dddc
0
roles/mysql
7,394
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yaml", "content": "- name: install MySQL libraries\n ansible.builtin.pip: # To install the libraries\n name: \"{{ item }}\"\n executable: pip3.9\n loop:\n - cryptography\n - PyMySQL\n\n- name: install MySQL server\n ansible.builtin.package:\n name: mysql-serv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1063, "all_permissive": false }
ansible_role
hamed-frz/Ansible-common
9bdc7c275c2c1342a030f339e9dbcf09568fcdb6
0
Backup/roles/app_backup
7,394
[ "no_license" ]
[ { "path": "Backup/roles/app_backup/vars/main.yaml", "content": "---\napp_folder: \"/myapp\"\nbackup_file_name: \"config_app_backup\"\nqnap_host: \"192.168.1.2\"\nqnap_user: \"admin\"\nqnap_backup_dir: \"/backup/myapp/\"\nqnap_ssh_port: 22\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1010, "all_permissive": false }
ansible_role
hamed-frz/Ansible-common
9bdc7c275c2c1342a030f339e9dbcf09568fcdb6
0
Backup/roles/mysql_backup-with-direct-access-to-db
7,394
[ "no_license" ]
[ { "path": "Backup/roles/mysql_backup-with-direct-access-to-db/tasks/main.yaml", "content": "- name: Install MySQL client (if not installed)\n ansible.builtin.yum:\n name: mysql-client\n state: present\n when: ansible_facts['os_family'] == \"RedHat\"\n\n\n- name: Install MySQL client (for Debian-base...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1633, "all_permissive": false }
ansible_role
hamed-frz/Ansible-common
9bdc7c275c2c1342a030f339e9dbcf09568fcdb6
0
Backup/roles/mysql_backup-with-ssh
7,394
[ "no_license" ]
[ { "path": "Backup/roles/mysql_backup-with-ssh/tasks/main.yaml", "content": "\n- name: Create a backup directory (on mysql host)\n ansible.builtin.file:\n path: \"{{ db_directory_backup }}\"\n state: directory\n mode: '0755'\n delegate_to: mysql_machine\n\n\n- name: Backup MySQL database from remo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2225, "all_permissive": false }
ansible_role
hamed-frz/Ansible-common
9bdc7c275c2c1342a030f339e9dbcf09568fcdb6
0
Backup/roles/pfsense_backup-by-webui
7,394
[ "no_license" ]
[ { "path": "Backup/roles/pfsense_backup-by-webui/vars/main.yaml", "content": "---\npfsense_instances:\n- { pfsense_name: \"pfsense1\", pfsense_host: \"192.168.1.1\", pfsense_port: \"443\", pfsense_user: \"admin\", pfsense_password: \"<PASSWORD>\" }\n\nbackup_dir: \"backup_pfsense\"\nbackup_file_name: \"confi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2275, "all_permissive": false }
ansible_role
allan-simon/docker-dev-rust
b7d3c672fc05f072c7c32bbf601a07a8f83a07f2
2
provisioning/roles/js
7,401
[ "no_license" ]
[ { "path": "provisioning/roles/js/tasks/main.yml", "content": "---\n\n- name: install nodejs and npm from repo\n apt: \n name=\"{{ item }}\"\n state=present\n with_items:\n - npm\n - nodejs\n - nodejs-legacy\n\n- name: install latest version of npm, as the one in ubuntu 14.04 is too old\n s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 415, "all_permissive": false }
ansible_role
allan-simon/docker-dev-rust
b7d3c672fc05f072c7c32bbf601a07a8f83a07f2
2
provisioning/roles/neovim
7,401
[ "no_license" ]
[ { "path": "provisioning/roles/neovim/files/init.vim", "content": "set mouse=a\n\"\nset tabstop=4\nset softtabstop=4\nset shiftwidth=4\nset smarttab\n\nset expandtab\nset smartindent\n\nset wildmode=longest,full \n\nset autochdir\n\nset showcmd\n\ncolorscheme torte\n\n\"the status bar is always displayed\nse...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3317, "all_permissive": false }
ansible_role
allan-simon/docker-dev-rust
b7d3c672fc05f072c7c32bbf601a07a8f83a07f2
2
provisioning/roles/rust
7,401
[ "no_license" ]
[ { "path": "provisioning/roles/rust/tasks/main.yml", "content": "---\n- block:\n - name: download rustup\n get_url:\n url: \"https://sh.rustup.rs\"\n dest: \"/tmp/rustup.sh\"\n validate_certs: False\n mode: 0700\n\n - name: install rustup and rust nightly\n command: \"sh /tmp/rust...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 740, "all_permissive": false }
ansible_role
clearobject/ansible_meetup_20140517
50e52caf1c1f373f8db4a9cac262f3f2abd4d85a
0
roles/demo
7,401
[ "no_license" ]
[ { "path": "roles/demo/tasks/import-cert.yml", "content": "# - name: add cert to java keystore\n# shell: ./keytool -import -noprompt -alias {{ inventory_hostname }} -keystore ../jre/lib/security/cacerts -storepass <PASSWORD> -file {{ cert_location }}\n# args:\n# chdir: \"/opt/java/current/bin\"\n# ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 7846, "all_permissive": false }
ansible_role
CSIRT-MU/Stream4Flow
897fca153ea2cc80ae7accb1d14a65c67d05c36f
102
provisioning/ansible/roles/applications
7,401
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/applications/tasks/main.yml", "content": "---\n- name: Install dependencies\n include: dependencies.yml\n become: yes\n\n- name: Install applications\n include: install.yml\n become: yes\n when: \"'sparkMaster' in group_names\"\n", "license_type": "no_license",...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1334, "all_permissive": false }
ansible_role
CSIRT-MU/Stream4Flow
897fca153ea2cc80ae7accb1d14a65c67d05c36f
102
provisioning/ansible/roles/common
7,401
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/common/tasks/main.yml", "content": "---\n- name: Add all hosts to /etc/hosts\n include: hosts.yml\n become: yes\n\n- name: Install Oracle Java 8\n include: java-oracle.yml\n become: yes\n\n- name: Add users\n include: users.yml\n become: yes", "license_type": ...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2159, "all_permissive": false }
ansible_role
CSIRT-MU/Stream4Flow
897fca153ea2cc80ae7accb1d14a65c67d05c36f
102
provisioning/ansible/roles/elk
7,401
[ "no_license" ]
[ { "path": "provisioning/ansible/roles/elk/defaults/main.yml", "content": "number_of_indices: 30", "license_type": "no_license", "detected_licenses": [], "size_bytes": 21 }, { "path": "provisioning/ansible/roles/elk/tasks/main.yml", "content": "- name: Install ELK Stack with dependenc...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3353, "all_permissive": false }