Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Tweak Daves fix for object initialization and fix some linux file format issues [4/29] #34

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
53 changes: 27 additions & 26 deletions crowbar_framework/app/controllers/keystone_controller.rb
@@ -1,26 +1,27 @@
# Copyright 2011, Dell # Copyright 2011, Dell
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #


class KeystoneController < BarclampController class KeystoneController < BarclampController
before_filter :set_service_object before_filter :set_service_object


def set_service_object def set_service_object
@service_object = KeystoneService.new logger @service_object = KeystoneService.new logger
end @service_object.bc_name = @bc_name

end
private :set_service_object

private :set_service_object
end

end