Displaying 1 result from an estimated 1 matches for "6cfdb04".
2009 Sep 23
0
[PATCH server] add network boot protocol 'none'
..._type.rb | 2 +-
src/db/migrate/043_add_bootproto_none.rb | 28 ++++++++++++++++++++++++++++
2 files changed, 29 insertions(+), 1 deletions(-)
create mode 100644 src/db/migrate/043_add_bootproto_none.rb
diff --git a/src/app/models/boot_type.rb b/src/app/models/boot_type.rb
index 6cfdb04..20761b0 100644
--- a/src/app/models/boot_type.rb
+++ b/src/app/models/boot_type.rb
@@ -22,5 +22,5 @@ class BootType < ActiveRecord::Base
validates_uniqueness_of :label,
:message => 'Label must be unique'
validates_inclusion_of :proto,
- :in => %w( static dhcp bootp )...