repo
stringlengths
5
92
file_url
stringlengths
80
287
file_path
stringlengths
5
197
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:37:27
2026-01-04 17:58:21
truncated
bool
2 classes
c10l/vagrant-butcher
https://github.com/c10l/vagrant-butcher/blob/169cc1d9deeadae3ffc450d454aa065100617e5d/lib/vagrant-butcher/helpers/key_files.rb
lib/vagrant-butcher/helpers/key_files.rb
require 'fileutils' module Vagrant module Butcher module Helpers module KeyFiles include ::Vagrant::Butcher::Helpers::Guest def cache_dir(env) @cache_dir ||= File.expand_path(File.join(root_path(env), butcher_config(env).cache_dir)) end def guest_key_path(env) ...
ruby
MIT
169cc1d9deeadae3ffc450d454aa065100617e5d
2026-01-04T17:57:07.755956Z
false
c10l/vagrant-butcher
https://github.com/c10l/vagrant-butcher/blob/169cc1d9deeadae3ffc450d454aa065100617e5d/lib/vagrant-butcher/helpers/action.rb
lib/vagrant-butcher/helpers/action.rb
module Vagrant module Butcher module Helpers module Action include Config def machine(env) @machine ||= env[:machine] end def root_path(env) @root_path ||= env[:root_path] end end end end end
ruby
MIT
169cc1d9deeadae3ffc450d454aa065100617e5d
2026-01-04T17:57:07.755956Z
false
c10l/vagrant-butcher
https://github.com/c10l/vagrant-butcher/blob/169cc1d9deeadae3ffc450d454aa065100617e5d/lib/vagrant-butcher/action/cleanup.rb
lib/vagrant-butcher/action/cleanup.rb
module Vagrant module Butcher module Action class Cleanup include ::Vagrant::Butcher::Helpers::Action include ::Vagrant::Butcher::Helpers::Connection def initialize(app, env) @app = app end def call(env) if butcher_config(machine(env)).enabled ...
ruby
MIT
169cc1d9deeadae3ffc450d454aa065100617e5d
2026-01-04T17:57:07.755956Z
false
c10l/vagrant-butcher
https://github.com/c10l/vagrant-butcher/blob/169cc1d9deeadae3ffc450d454aa065100617e5d/lib/vagrant-butcher/action/copy_guest_key.rb
lib/vagrant-butcher/action/copy_guest_key.rb
module Vagrant module Butcher module Action class CopyGuestKey include ::Vagrant::Butcher::Helpers::Action include ::Vagrant::Butcher::Helpers::KeyFiles def initialize(app, env) @app = app end def call(env) begin @app.call(env) ...
ruby
MIT
169cc1d9deeadae3ffc450d454aa065100617e5d
2026-01-04T17:57:07.755956Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/install.rb
install.rb
#! /usr/bin/env ruby #-- # Copyright 2004 Austin Ziegler <ruby-install@halostatue.ca> # Install utility. Based on the original installation script for rdoc by the # Pragmatic Programmers. # # This program is free software. It may be redistributed and/or modified under # the terms of the GPL version 2 (or later) or ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/rakelib/references/get_typedocs.rb
rakelib/references/get_typedocs.rb
# This script will print the Puppet type docs to stdout in JSON format. # There are some subtleties that make this a pain to run. Basically: Even if you # 'require' a specific copy of the Puppet code, the autoloader will grab bits # and pieces of Puppet code from other copies of Puppet scattered about the Ruby # load ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/util/binary_search_specs.rb
util/binary_search_specs.rb
#!/usr/bin/env ruby # Author: Nick Lewis specs_in_order = File.read('spec_order.txt').split failing_spec = ARGV.first specs = specs_in_order[0...specs_in_order.index(failing_spec)] suspects = specs while suspects.length > 1 do count = suspects.length specs_to_run = suspects[0...(count/2)] puts "Trying #{spec...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/util/puppet_facts_output.rb
packaging/acceptance/util/puppet_facts_output.rb
test_name "get facts, obfuscate, and save to a local file for uploading to facterdb" do FACTS_OVERRIDE = { 'dmi' => { 'product' => { 'serial_number' => 'VMware-99 ff ff ff ff ff ff ff-ff ff ff ff ff ff ff ff' } }, 'ssh' => { 'dsa' => { 'fingerprints' => { 'sha1...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/augeas_validation.rb
packaging/acceptance/tests/augeas_validation.rb
skip_test 'non-windows only test' if hosts.any? { |host| host.platform =~ /windows/ } tag 'audit:high' test_name 'Augeas Validation' do teardown do hosts.each do |agent| file = <<-EOF augeas { 'test_ssh': lens => 'Ssh.lns', incl => '/etc/ssh/ssh_config', context => '/files/etc/ssh/ssh_config', ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_simple_custom_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_simple_custom_fact.rb
test_name 'Ensure Facter values usage for simple xustom fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimiter)[0] f...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/validate_vendored_modules.rb
packaging/acceptance/tests/validate_vendored_modules.rb
def vendor_modules_path(host) case host['platform'] when /windows/ "'C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\vendor_modules;C:\\Program Files (x86)\\Puppet Labs\\Puppet\\puppet\\vendor_modules'" else '/opt/puppetlabs/puppet/vendor_modules/' end end test_name "PA-1998: Validate that vendored mod...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_dotted_external_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_dotted_external_fact.rb
test_name 'Ensure Facter values usage for dotted external fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimiter)[0] ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/module_install.rb
packaging/acceptance/tests/module_install.rb
test_name 'PA-3125: make sure we can install a forge module' do tag 'audit:high', 'audit:acceptance' require 'puppet/acceptance/common_utils' module_name = "puppetlabs/mailalias_core" agents.each do |agent| need_to_uninstall = false teardown do on agent, puppet("module", "uninstall", "--f...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_external_overrides_custom.rb
packaging/acceptance/tests/ensure_facter_values_for_external_overrides_custom.rb
test_name 'Ensure Facter values usage for external fact overriding custom fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(del...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_SCL_python_pip_works.rb
packaging/acceptance/tests/ensure_SCL_python_pip_works.rb
test_name 'PUP-8351: Ensure pip provider works with RHSCL python' do confine :to, :platform => /centos-(6|7)-x86_64/ tag 'audit:medium', 'audit:acceptance' teardown do on agent, 'yum remove python27-python-pip -y' end step 'install and enable RHSCL python' do on agent, 'yum install centos-re...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_command_can_be_executed.rb
packaging/acceptance/tests/ensure_facter_command_can_be_executed.rb
test_name 'Ensure facter command can be executed' do require 'puppet/acceptance/common_utils' agents.each do |agent| step "test facter command" do facter = agent['platform'] =~ /win/ ? 'cmd /c facter' : 'facter' on agent, "#{facter} --version", :acceptable_exit_codes => [0] end end end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/test_manpage_clobber.rb
packaging/acceptance/tests/test_manpage_clobber.rb
test_name 'PA-2768: Extend manpath instead of overriding it' do tag 'audit:low', 'audit:acceptance' # shellpath scripts are only installed on linux, however macos knows how to find # man directories relative to the existing path confine :except, :platform => ['windows', 'aix', 'solaris'] agents.each do...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_custom_overrides_core_dotted_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_custom_overrides_core_dotted_fact.rb
test_name 'Ensure Facter values usage for custom fact overriding core dotted fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/selinux.rb
packaging/acceptance/tests/selinux.rb
test_name 'PA-3067: Manage selinux' do tag 'audit:high', 'audit:acceptance' confine :to, :platform => /el-|fedora-|debian-|ubuntu-/ confine :except, :platform => /el-6/ require 'puppet/acceptance/common_utils' agents.each do |agent| step "test require 'selinux'" on agent, "#{ruby_command(a...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_external_overrides_core_dotted_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_external_overrides_core_dotted_fact.rb
test_name 'Ensure Facter values usage for external fact overriding core dotted fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.spli...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/puppet_facts.rb
packaging/acceptance/tests/puppet_facts.rb
# Verify that -p loads external and custom facts from puppet locations test_name "C14783: puppet facts show loads facts from puppet" do tag 'audit:high' agents.each do |agent| external_dir = agent.puppet['pluginfactdest'] external_file = File.join(external_dir, "external.txt") custom_dir = File.join(ag...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_external_overrides_custom_overrides_core_top_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_external_overrides_custom_overrides_core_top_fact.rb
test_name 'Ensure Facter values usage for external fact overriding custom and core top fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.std...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_custom_overrides_core_top_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_custom_overrides_core_top_fact.rb
test_name 'Ensure Facter values usage for custom fact overriding core top fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(del...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_puppet_facts_can_use_facter.rb
packaging/acceptance/tests/ensure_puppet_facts_can_use_facter.rb
test_name 'Ensure puppet facts can use facter' do require 'puppet/acceptance/common_utils' agents.each do |agent| step 'test puppet facts with correct facter version' do on(agent, puppet('facts'), :acceptable_exit_codes => [0]) do |result| facter_major_version = Integer(JSON.parse(result.stdout...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/env_windows_installdir_fact.rb
packaging/acceptance/tests/env_windows_installdir_fact.rb
# (PA-466) The env_windows_installdir fact is set as an environment variable # fact via environment.bat on Windows systems. Test to ensure it is both # present and accurate. test_name 'PA-466: Ensure env_windows_installdir fact is present and correct' do tag 'audit:high', # PE and modules rely on this fact in order ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/validate_vendored_openssl.rb
packaging/acceptance/tests/validate_vendored_openssl.rb
require 'puppet/acceptance/temp_file_utils' test_name 'Validate openssl version and fips' do extend Puppet::Acceptance::TempFileUtils tag 'audit:high' def openssl_command(host) puts "privatebindir=#{host['privatebindir']}" "env PATH=\"#{host['privatebindir']}:${PATH}\" openssl" end def create_bat_...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_json_external_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_json_external_fact.rb
test_name 'Ensure Facter values usage for json external fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimiter)[0] ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_json_custom_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_json_custom_fact.rb
test_name 'Ensure Facter values usage for json custom fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimiter)[0] fo...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_external_overrides_custom_overrides_core_dotted_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_external_overrides_custom_overrides_core_dotted_fact.rb
test_name 'Ensure Facter values usage for external fact overriding custom and core dotted fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output....
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_puppet-agent_paths.rb
packaging/acceptance/tests/ensure_puppet-agent_paths.rb
# ensure installs and code honor new puppet-agent path spec: # https://github.com/puppetlabs/puppet-specifications/blob/master/file_paths.md test_name 'PUP-4033: Ensure aio path spec is honored' tag 'audit:high', 'audit:acceptance', 'audit:refactor' # move to puppet-agent acceptance require 'puppet/accept...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ffi.rb
packaging/acceptance/tests/ffi.rb
test_name 'FFI can be required' do tag 'audit:low', 'audit:acceptance' require 'puppet/acceptance/common_utils' agents.each do |agent| step "test require 'ffi'" on agent, "#{ruby_command(agent)} -e 'require \"ffi\"'" end end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_dotted_custom_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_dotted_custom_fact.rb
test_name 'Ensure Facter values usage for dotted custom fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimiter)[0] ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/file_permissions.rb
packaging/acceptance/tests/file_permissions.rb
# SDDL Decoder Ring # # O:SY => owner system # G:SY => group system # D: => DACL # Flags # P => protected # AI => automatic inheritance has been computed # ACES (ace1)(ace2)... # Type # A => allow # Inheritance Flags # OI => object inherit (affects child files) # CI => container inherit (af...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/linker_variable_cleanup.rb
packaging/acceptance/tests/linker_variable_cleanup.rb
require 'puppet/acceptance/common_utils' extend Puppet::Acceptance::CommandUtils confine :except, :platform => 'windows' def libsource(host) kernel = on(host, facter("kernel")).stdout.chomp.downcase arch = on(host, facter("architecture")).stdout.chomp.downcase case kernel when "linux" case arch when ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_custom_overrides_external.rb
packaging/acceptance/tests/ensure_facter_values_for_custom_overrides_external.rb
test_name 'Ensure Facter values usage custom fact overriding external fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimit...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_simple_external_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_simple_external_fact.rb
test_name 'Ensure Facter values usage for simple external fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(delimiter)[0] ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/validate_vendored_ruby.rb
packaging/acceptance/tests/validate_vendored_ruby.rb
require 'puppet/acceptance/common_utils.rb' require 'puppet/acceptance/temp_file_utils' extend Puppet::Acceptance::CommandUtils def package_installer(agent) # for some reason, beaker does not have a configured package installer # for AIX so we manually set up the package installer for it. if agent['platform'] =~...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_facter_values_for_external_overrides_core_top_fact.rb
packaging/acceptance/tests/ensure_facter_values_for_external_overrides_core_top_fact.rb
test_name 'Ensure Facter values usage for external fact overriding core top fact' do agents.each do |agent| output = on agent, puppet('config print modulepath') if agent.platform =~ /windows/ delimiter = ';' else delimiter = ':' end module_path = output.stdout.split(d...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_macos_executables_are_signed.rb
packaging/acceptance/tests/ensure_macos_executables_are_signed.rb
test_name 'Ensure puppet executables are codesigned on mac OS' do confine :to, :platform => /macos/ tag 'audit:high' agents.each do |agent| [ '/opt/puppetlabs/bin/puppet', '/opt/puppetlabs/puppet/bin/puppet', '/opt/puppetlabs/puppet/bin/pxp-agent', '/opt/puppetlabs/puppet/bin/wrapper....
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/ensure_version_file.rb
packaging/acceptance/tests/ensure_version_file.rb
require 'puppet/acceptance/temp_file_utils' extend Puppet::Acceptance::TempFileUtils # ensure a version file is created according to the puppet-agent path specification: # https://github.com/puppetlabs/puppet-specifications/blob/master/file_paths.md test_name 'PA-466: Ensure version file is created on agent' do sk...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/tests/windows_eventlog.rb
packaging/acceptance/tests/windows_eventlog.rb
test_name "Write to Windows eventlog" tag 'audit:medium', # core feature, high impact, but low risk 'audit:refactor', # Use block style `test_name` 'audit:acceptance' # unclear if this is an important packaging level feature # test (warrants acceptance level) that wouldn't also be ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/teardown/common/099_Archive_Logs.rb
packaging/acceptance/teardown/common/099_Archive_Logs.rb
require 'date' def file_glob(host, path) result = on(host, "ls #{path}", :acceptable_exit_codes => [0, 2]) return [] if result.exit_code != 0 return result.stdout.strip.split("\n") end # This test is prefixed with zzz so it will hopefully run last. test_name 'Backup puppet logs and app data on all hosts' do t...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/pre-suite/configure_type_defaults.rb
packaging/acceptance/pre-suite/configure_type_defaults.rb
# Ensures that the /root/.ssh/environment file is # set up with a path that includes /opt/puppetlabs/bin. # Normally this would be called as part of beaker-puppet # install steps, but we are installing openvox-agent outside # of beaker-puppet, since it doesn't handle openvox. test_name('configure root ssh environment p...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/lib/helper.rb
packaging/acceptance/lib/helper.rb
$LOAD_PATH << File.expand_path(File.dirname(__FILE__)) require 'beaker-puppet'
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/lib/puppet/acceptance/common_utils.rb
packaging/acceptance/lib/puppet/acceptance/common_utils.rb
module Puppet module Acceptance module CommandUtils def irb_command(host, type='aio') command(host, 'irb', type) end module_function :irb_command def command(host, cmd, type) return on(host, "which #{cmd}").stdout.chomp unless type == 'aio' return "env PATH=\"#{hos...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/lib/puppet/acceptance/temp_file_utils.rb
packaging/acceptance/lib/puppet/acceptance/temp_file_utils.rb
module Puppet module Acceptance module TempFileUtils # Return the name of the root user, as appropriate for the platform. def root_user(host) case host['platform'] when /windows/ 'Administrator' else 'root' end end # Return the name of ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/acceptance/config/aio/options.rb
packaging/acceptance/config/aio/options.rb
{ :type => 'aio', }
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-zfs_core.rb
packaging/configs/components/module-puppetlabs-zfs_core.rb
component "module-puppetlabs-zfs_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-zfs_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-mount_core.rb
packaging/configs/components/module-puppetlabs-mount_core.rb
component "module-puppetlabs-mount_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-mount_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/cleanup.rb
packaging/configs/components/cleanup.rb
# This component exists only to remove unnecessary files that bloat the final puppet-agent package. component "cleanup" do |pkg, settings, platform| unless settings[:dev_build] # Unless the settings specify that this is a development build, remove # unneeded header files (boost headers, for example, increase ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-cron_core.rb
packaging/configs/components/module-puppetlabs-cron_core.rb
component "module-puppetlabs-cron_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-cron_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/_base-module.rb
packaging/configs/components/_base-module.rb
# This file is a basis for vendor modules that should be installed alongside # puppet-agent in settings[:module_vendordir]. It should not be used as a # component; Instead, other module components should load it using # `instance_eval`. Here's an example: # # component "module-puppetlabs-stdlib" do |pkg, settings, plat...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-scheduled_task.rb
packaging/configs/components/module-puppetlabs-scheduled_task.rb
component "module-puppetlabs-scheduled_task" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-scheduled_task.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-host_core.rb
packaging/configs/components/module-puppetlabs-host_core.rb
component "module-puppetlabs-host_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-host_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/execution_wrapper.rb
packaging/configs/components/execution_wrapper.rb
# This lays down the execution_wrapper script, which used to be a piece of pxp-agent # that Choria depends on, but is now a plain Ruby script. component "execution_wrapper" do |pkg, settings, platform| pkg.add_source "file://resources/files/execution_wrapper" pkg.install_file "execution_wrapper", "#{settings[:bindi...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/openfact.rb
packaging/configs/components/openfact.rb
component "openfact" do |pkg, settings, platform| pkg.load_from_json('configs/components/openfact.json') pkg.build_requires 'puppet-runtime' # Provides ruby and rubygem-deep-merge flags = " --bindir=#{settings[:bindir]} \ --sitelibdir=#{settings[:ruby_vendordir]} \ --man \ --...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-zone_core.rb
packaging/configs/components/module-puppetlabs-zone_core.rb
component "module-puppetlabs-zone_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-zone_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/puppet-resource_api.rb
packaging/configs/components/puppet-resource_api.rb
component "puppet-resource_api" do |pkg, settings, platform| pkg.load_from_json("configs/components/puppet-resource_api.json") pkg.build_requires "puppet-runtime" # Install into the directory for gems shared by puppet and puppetserver pkg.environment "GEM_HOME", settings[:puppet_gem_vendor_dir] # PA-25 in ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-sshkeys_core.rb
packaging/configs/components/module-puppetlabs-sshkeys_core.rb
component "module-puppetlabs-sshkeys_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-sshkeys_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/shellpath.rb
packaging/configs/components/shellpath.rb
component "shellpath" do |pkg, settings, platform| pkg.version "2023-02-15" pkg.add_source "file://resources/files/puppet-agent.sh", sum: "f5987a68adf3844ca15ba53813ad6f63" pkg.add_source "file://resources/files/puppet-agent.csh", sum: "62b360a7d15b486377ef6c7c6d05e881" pkg.install_file("./puppet-agent.sh", "/e...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-selinux_core.rb
packaging/configs/components/module-puppetlabs-selinux_core.rb
component "module-puppetlabs-selinux_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-selinux_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/pl-ruby-patch.rb
packaging/configs/components/pl-ruby-patch.rb
# This component patches the pl-ruby package on cross compiled # platforms. Ruby gem components should require this. # # We have to do this when installing gems with native extensions in # order to trick rubygems into thinking we have a different ruby # version and target architecture # # This component should also be ...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/wrapper-script.rb
packaging/configs/components/wrapper-script.rb
# This component creates wrapper scripts to clean up the environment on UNIX platforms component "wrapper-script" do |pkg, settings, platform| pkg.add_source "file://resources/files/aix-wrapper.sh" pkg.add_source "file://resources/files/osx-wrapper.sh" pkg.add_source "file://resources/files/sysv-wrapper.sh" w...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/openssl-fips.rb
packaging/configs/components/openssl-fips.rb
component "openssl-fips" do |pkg, settings, platform| raise "openssl-fips is not a valid component on non-fips platforms" unless platform.is_fips? pkg.build_requires "puppet-runtime" openssl_fips_details = JSON.parse(File.read('configs/components/openssl-fips.json')) openssl_fips_version = openssl_fips_detai...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/puppet-runtime.rb
packaging/configs/components/puppet-runtime.rb
component 'puppet-runtime' do |pkg, settings, platform| unless settings[:puppet_runtime_version] && settings[:puppet_runtime_location] && settings[:puppet_runtime_basename] raise "Expected to find :puppet_runtime_version, :puppet_runtime_location, and :puppet_runtime_basename settings; Please set these in your pr...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/puppet.rb
packaging/configs/components/puppet.rb
require_relative '../../../lib/puppet/version' component "puppet" do |pkg, settings, platform| pkg.url 'file://../' pkg.version Puppet.version pkg.build_requires "puppet-runtime" # Provides ruby and rubygem-win32-dir # Used to compile binary translation files # i18n is not supported on Solaris pkg.build_re...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-augeas_core.rb
packaging/configs/components/module-puppetlabs-augeas_core.rb
component "module-puppetlabs-augeas_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-augeas_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/components/module-puppetlabs-yumrepo_core.rb
packaging/configs/components/module-puppetlabs-yumrepo_core.rb
component "module-puppetlabs-yumrepo_core" do |pkg, settings, platform| pkg.load_from_json("configs/components/module-puppetlabs-yumrepo_core.json") instance_eval File.read("configs/components/_base-module.rb") end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/ubuntu-25.04-aarch64.rb
packaging/configs/platforms/ubuntu-25.04-aarch64.rb
platform "ubuntu-25.04-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/el-8-x86_64.rb
packaging/configs/platforms/el-8-x86_64.rb
platform "el-8-x86_64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/redhatfips-9-x86_64.rb
packaging/configs/platforms/redhatfips-9-x86_64.rb
platform "redhatfips-9-x86_64" do |plat| # NOTE: You must run the build on a FIPS-enabled Linux host in order for this platform to # build correctly with the Docker engine. plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/amazon-2-x86_64.rb
packaging/configs/platforms/amazon-2-x86_64.rb
platform 'amazon-2-x86_64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/windowsfips-2016-x64.rb
packaging/configs/platforms/windowsfips-2016-x64.rb
platform "windowsfips-2016-x64" do |plat| plat.vmpooler_template 'win-2016-fips-x86_64' plat.servicetype 'windows' # We need to ensure we install chocolatey prior to adding any nuget repos. Otherwise, everything will fall over plat.add_build_repository "https://artifactory.delivery.puppetlabs.net/artifactory/g...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/ubuntu-24.04-amd64.rb
packaging/configs/platforms/ubuntu-24.04-amd64.rb
platform "ubuntu-24.04-amd64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/ubuntu-22.04-aarch64.rb
packaging/configs/platforms/ubuntu-22.04-aarch64.rb
platform "ubuntu-22.04-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/amazon-2-aarch64.rb
packaging/configs/platforms/amazon-2-aarch64.rb
platform 'amazon-2-aarch64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/ubuntu-22.04-amd64.rb
packaging/configs/platforms/ubuntu-22.04-amd64.rb
platform "ubuntu-22.04-amd64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/sles-15-x86_64.rb
packaging/configs/platforms/sles-15-x86_64.rb
platform "sles-15-x86_64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/el-8-aarch64.rb
packaging/configs/platforms/el-8-aarch64.rb
platform "el-8-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/sles-12-x86_64.rb
packaging/configs/platforms/sles-12-x86_64.rb
platform "sles-12-x86_64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/debian-13-aarch64.rb
packaging/configs/platforms/debian-13-aarch64.rb
platform "debian-13-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/fedora-41-x86_64.rb
packaging/configs/platforms/fedora-41-x86_64.rb
platform 'fedora-41-x86_64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/fedora-41-aarch64.rb
packaging/configs/platforms/fedora-41-aarch64.rb
platform 'fedora-41-aarch64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/fedora-43-x86_64.rb
packaging/configs/platforms/fedora-43-x86_64.rb
platform 'fedora-43-x86_64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/debian-11-armhf.rb
packaging/configs/platforms/debian-11-armhf.rb
platform "debian-11-armhf" do |plat| plat.servicedir "/lib/systemd/system" plat.defaultdir "/etc/default" plat.servicetype "systemd" plat.codename "bullseye" packages = ['build-essential', 'devscripts', 'rsync', 'fakeroot', 'debhelper'] plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get up...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/ubuntu-25.04-amd64.rb
packaging/configs/platforms/ubuntu-25.04-amd64.rb
platform "ubuntu-25.04-amd64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/debian-11-amd64.rb
packaging/configs/platforms/debian-11-amd64.rb
platform "debian-11-amd64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/el-9-ppc64le.rb
packaging/configs/platforms/el-9-ppc64le.rb
platform 'el-9-ppc64le' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/fedora-43-aarch64.rb
packaging/configs/platforms/fedora-43-aarch64.rb
platform 'fedora-43-aarch64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/macos-all-x86_64.rb
packaging/configs/platforms/macos-all-x86_64.rb
platform 'macos-all-x86_64' do |plat| plat.inherit_from_default plat.output_dir File.join('macos', 'all', 'x86_64') end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/el-10-x86_64.rb
packaging/configs/platforms/el-10-x86_64.rb
platform "el-10-x86_64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/debian-12-armhf.rb
packaging/configs/platforms/debian-12-armhf.rb
platform "debian-12-armhf" do |plat| plat.servicedir "/lib/systemd/system" plat.defaultdir "/etc/default" plat.servicetype "systemd" plat.codename "bookworm" packages = ['build-essential', 'devscripts', 'rsync', 'fakeroot', 'debhelper'] plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get up...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/amazon-2023-aarch64.rb
packaging/configs/platforms/amazon-2023-aarch64.rb
platform 'amazon-2023-aarch64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/solaris-11-i386.rb
packaging/configs/platforms/solaris-11-i386.rb
platform "solaris-11-i386" do |plat| plat.servicedir "/lib/svc/manifest" plat.defaultdir "/lib/svc/method" plat.servicetype "smf" plat.vmpooler_template "solaris-11-x86_64" plat.add_build_repository 'http://solaris-11-reposync.delivery.puppetlabs.net:81', 'puppetlabs.com' plat.install_build_dependencies_wit...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/macos-all-arm64.rb
packaging/configs/platforms/macos-all-arm64.rb
platform 'macos-all-arm64' do |plat| plat.inherit_from_default packages = %w[cmake pkg-config yaml-cpp] # We uninstall in case they are already installed, since GitHub Actions runners # will already have their own version and we want the homebrew core version. # We do || true so it doesn't fail if the package...
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/debian-13-amd64.rb
packaging/configs/platforms/debian-13-amd64.rb
platform "debian-13-amd64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/el-10-aarch64.rb
packaging/configs/platforms/el-10-aarch64.rb
platform "el-10-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/debian-11-aarch64.rb
packaging/configs/platforms/debian-11-aarch64.rb
platform "debian-11-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/fedora-42-x86_64.rb
packaging/configs/platforms/fedora-42-x86_64.rb
platform 'fedora-42-x86_64' do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false
OpenVoxProject/openvox
https://github.com/OpenVoxProject/openvox/blob/9336df16a11679d701a2bd9ebe1308d4fb669f57/packaging/configs/platforms/el-9-aarch64.rb
packaging/configs/platforms/el-9-aarch64.rb
platform "el-9-aarch64" do |plat| plat.inherit_from_default end
ruby
Apache-2.0
9336df16a11679d701a2bd9ebe1308d4fb669f57
2026-01-04T17:47:45.967003Z
false