-
- Downloads
Initial commit
Showing
- .gitignore 12 additions, 0 deletions.gitignore
- .gitlab-ci.yml 4 additions, 0 deletions.gitlab-ci.yml
- .rubocop.yml 15 additions, 0 deletions.rubocop.yml
- Gemfile 4 additions, 0 deletionsGemfile
- LICENSE.txt 0 additions, 0 deletionsLICENSE.txt
- README.md 21 additions, 0 deletionsREADME.md
- Rakefile 10 additions, 0 deletionsRakefile
- app/services/foreman/unattended_installation/concerns/host_finder_extensions.rb 28 additions, 0 deletions...nattended_installation/concerns/host_finder_extensions.rb
- foreman_uuid_boot.gemspec 26 additions, 0 deletionsforeman_uuid_boot.gemspec
- lib/foreman_uuid_boot.rb 6 additions, 0 deletionslib/foreman_uuid_boot.rb
- lib/foreman_uuid_boot/engine.rb 21 additions, 0 deletionslib/foreman_uuid_boot/engine.rb
- lib/foreman_uuid_boot/version.rb 5 additions, 0 deletionslib/foreman_uuid_boot/version.rb
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.rubocop.yml
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | |||
# Specify your gem's dependencies in foreman_vmware_advanced.gemspec | |||
gemspec |
LICENSE.txt
0 → 100644
This diff is collapsed.
README.md
0 → 100644
Rakefile
0 → 100644
foreman_uuid_boot.gemspec
0 → 100644
# frozen_string_literal: true | |||
lib = File.expand_path('lib', __dir__) | |||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |||
require 'foreman_uuid_boot/version' | |||
Gem::Specification.new do |spec| | |||
spec.name = 'foreman_uuid_boot' | |||
spec.version = ForemanUuidBoot::VERSION | |||
spec.authors = ['Alexander Olofsson'] | |||
spec.email = ['alexander.olofsson@liu.se'] | |||
spec.summary = 'Allows booting based off of machine UUID' | |||
spec.description = spec.summary | |||
spec.homepage = 'https://github.com/ananace/foreman_uuid_boot' | |||
spec.license = 'GPL-3.0' | |||
spec.files = Dir['{app,lib}/**/*.{rake,rb}'] + %w[LICENSE.txt Rakefile README.md] | |||
spec.metadata['rubygems_mfa_required'] = 'true' | |||
spec.add_development_dependency 'rubocop' | |||
spec.add_development_dependency 'rubocop-minitest' | |||
spec.add_development_dependency 'rubocop-performance' | |||
spec.add_development_dependency 'rubocop-rails' | |||
end |
lib/foreman_uuid_boot.rb
0 → 100644
lib/foreman_uuid_boot/engine.rb
0 → 100644
lib/foreman_uuid_boot/version.rb
0 → 100644
Please register or sign in to comment