Skip to content

Commit

Permalink
Merge pull request #742 from chuckyz/kde-neon-support
Browse files Browse the repository at this point in the history
add KDE Neon support
  • Loading branch information
mizzy authored May 24, 2023
2 parents 616326a + 9fc30f1 commit bbfd3fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/specinfra/command.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ module Command
require 'specinfra/command/elementary'
require 'specinfra/command/elementary/base'

# Neon (inherit Ubuntu)
require 'specinfra/command/neon'
require 'specinfra/command/neon/base'

# Cumulus Networks (inherit Debian)
require 'specinfra/command/cumulus'
require 'specinfra/command/cumulus/base'
Expand Down
1 change: 1 addition & 0 deletions lib/specinfra/command/neon.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
class Specinfra::Command::Neon; end
2 changes: 2 additions & 0 deletions lib/specinfra/command/neon/base.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class Specinfra::Command::Neon::Base < Specinfra::Command::Ubuntu::Base
end

0 comments on commit bbfd3fd

Please sign in to comment.