diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..ee4fe68 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. +Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in +compliance with the License. You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 +Unless required by applicable law or agreed to in writing, software distributed under the License is +distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. diff --git a/lib/puppet/affinity_group.rb b/lib/puppet/affinity_group.rb index 0970b08..455e3dc 100644 --- a/lib/puppet/affinity_group.rb +++ b/lib/puppet/affinity_group.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application_config' include Puppet::ApplicationConfig diff --git a/lib/puppet/application/azure_affinitygroup.rb b/lib/puppet/application/azure_affinitygroup.rb index 2aa334e..822f254 100644 --- a/lib/puppet/application/azure_affinitygroup.rb +++ b/lib/puppet/application/azure_affinitygroup.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/face' require 'puppet/application/face_base' diff --git a/lib/puppet/application/azure_cloudservice.rb b/lib/puppet/application/azure_cloudservice.rb index ab43047..db76020 100644 --- a/lib/puppet/application/azure_cloudservice.rb +++ b/lib/puppet/application/azure_cloudservice.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application/face_base' class Puppet::Application::AzureCloudservice < Puppet::Application::FaceBase diff --git a/lib/puppet/application/azure_sqldb.rb b/lib/puppet/application/azure_sqldb.rb index 2b9968d..911c533 100644 --- a/lib/puppet/application/azure_sqldb.rb +++ b/lib/puppet/application/azure_sqldb.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application/face_base' class Puppet::Application::AzureSqldb < Puppet::Application::FaceBase diff --git a/lib/puppet/application/azure_storage.rb b/lib/puppet/application/azure_storage.rb index 0cacfff..76ed3c8 100644 --- a/lib/puppet/application/azure_storage.rb +++ b/lib/puppet/application/azure_storage.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application/face_base' class Puppet::Application::AzureStorage < Puppet::Application::FaceBase diff --git a/lib/puppet/application/azure_vm.rb b/lib/puppet/application/azure_vm.rb index b81f1eb..4c082b1 100644 --- a/lib/puppet/application/azure_vm.rb +++ b/lib/puppet/application/azure_vm.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application/face_base' class Puppet::Application::AzureVm < Puppet::Application::FaceBase diff --git a/lib/puppet/application/azure_vnet.rb b/lib/puppet/application/azure_vnet.rb index a162a08..c3a6990 100644 --- a/lib/puppet/application/azure_vnet.rb +++ b/lib/puppet/application/azure_vnet.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application/face_base' class Puppet::Application::AzureVnet < Puppet::Application::FaceBase diff --git a/lib/puppet/application_config.rb b/lib/puppet/application_config.rb index 63821ae..0532d38 100644 --- a/lib/puppet/application_config.rb +++ b/lib/puppet/application_config.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/core/utility' include Puppet::Core::Utility diff --git a/lib/puppet/azurepack/bootstrap.rb b/lib/puppet/azurepack/bootstrap.rb index 9072434..38eabdc 100644 --- a/lib/puppet/azurepack/bootstrap.rb +++ b/lib/puppet/azurepack/bootstrap.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/core/remote_connection' require 'puppet/core/utility' require 'puppet/azurepack/installer' diff --git a/lib/puppet/azurepack/installer.rb b/lib/puppet/azurepack/installer.rb index 2b600a3..fdcf801 100644 --- a/lib/puppet/azurepack/installer.rb +++ b/lib/puppet/azurepack/installer.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'erb' module Puppet diff --git a/lib/puppet/cloud_service.rb b/lib/puppet/cloud_service.rb index f878b98..7c98bc2 100644 --- a/lib/puppet/cloud_service.rb +++ b/lib/puppet/cloud_service.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/core/utility' require 'puppet/application_config' include Puppet::ApplicationConfig diff --git a/lib/puppet/core/remote_connection.rb b/lib/puppet/core/remote_connection.rb index fb4d963..568f584 100644 --- a/lib/puppet/core/remote_connection.rb +++ b/lib/puppet/core/remote_connection.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'net/ssh' require 'net/scp' diff --git a/lib/puppet/core/utility.rb b/lib/puppet/core/utility.rb index 9835ad8..c48268b 100644 --- a/lib/puppet/core/utility.rb +++ b/lib/puppet/core/utility.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'highline/import' diff --git a/lib/puppet/face/azure_affinitygroup.rb b/lib/puppet/face/azure_affinitygroup.rb index 8d663d6..c00da6e 100644 --- a/lib/puppet/face/azure_affinitygroup.rb +++ b/lib/puppet/face/azure_affinitygroup.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/affinity_group' Puppet::Face.define(:azure_affinitygroup, '1.0.0') do diff --git a/lib/puppet/face/azure_affinitygroup/create.rb b/lib/puppet/face/azure_affinitygroup/create.rb index 58c9a6e..a6a197f 100644 --- a/lib/puppet/face/azure_affinitygroup/create.rb +++ b/lib/puppet/face/azure_affinitygroup/create.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_affinitygroup, '1.0.0' do diff --git a/lib/puppet/face/azure_affinitygroup/delete.rb b/lib/puppet/face/azure_affinitygroup/delete.rb index 4584d69..24eb8b8 100644 --- a/lib/puppet/face/azure_affinitygroup/delete.rb +++ b/lib/puppet/face/azure_affinitygroup/delete.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_affinitygroup, '1.0.0' do diff --git a/lib/puppet/face/azure_affinitygroup/list.rb b/lib/puppet/face/azure_affinitygroup/list.rb index 1e3945c..6c61001 100644 --- a/lib/puppet/face/azure_affinitygroup/list.rb +++ b/lib/puppet/face/azure_affinitygroup/list.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'tilt' diff --git a/lib/puppet/face/azure_affinitygroup/update.rb b/lib/puppet/face/azure_affinitygroup/update.rb index 5ac2818..8f00eaa 100644 --- a/lib/puppet/face/azure_affinitygroup/update.rb +++ b/lib/puppet/face/azure_affinitygroup/update.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_affinitygroup, '1.0.0' do diff --git a/lib/puppet/face/azure_cloudservice.rb b/lib/puppet/face/azure_cloudservice.rb index 858ba8a..5dc4f13 100644 --- a/lib/puppet/face/azure_cloudservice.rb +++ b/lib/puppet/face/azure_cloudservice.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/cloud_service' Puppet::Face.define(:azure_cloudservice, '1.0.0') do diff --git a/lib/puppet/face/azure_cloudservice/create.rb b/lib/puppet/face/azure_cloudservice/create.rb index a3653e9..d7f2613 100644 --- a/lib/puppet/face/azure_cloudservice/create.rb +++ b/lib/puppet/face/azure_cloudservice/create.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_cloudservice, '1.0.0' do diff --git a/lib/puppet/face/azure_cloudservice/delete.rb b/lib/puppet/face/azure_cloudservice/delete.rb index 45358f8..cdf9aa0 100644 --- a/lib/puppet/face/azure_cloudservice/delete.rb +++ b/lib/puppet/face/azure_cloudservice/delete.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_cloudservice, '1.0.0' do diff --git a/lib/puppet/face/azure_cloudservice/delete_deployment.rb b/lib/puppet/face/azure_cloudservice/delete_deployment.rb index cb1a4eb..9b474fe 100644 --- a/lib/puppet/face/azure_cloudservice/delete_deployment.rb +++ b/lib/puppet/face/azure_cloudservice/delete_deployment.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_cloudservice, '1.0.0' do diff --git a/lib/puppet/face/azure_cloudservice/list.rb b/lib/puppet/face/azure_cloudservice/list.rb index 00fd7ef..6873d2a 100644 --- a/lib/puppet/face/azure_cloudservice/list.rb +++ b/lib/puppet/face/azure_cloudservice/list.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'tilt' diff --git a/lib/puppet/face/azure_cloudservice/upload_certificate.rb b/lib/puppet/face/azure_cloudservice/upload_certificate.rb index 035d001..1a1b49d 100644 --- a/lib/puppet/face/azure_cloudservice/upload_certificate.rb +++ b/lib/puppet/face/azure_cloudservice/upload_certificate.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_cloudservice, '1.0.0' do diff --git a/lib/puppet/face/azure_sqldb.rb b/lib/puppet/face/azure_sqldb.rb index 8087f5d..b405864 100644 --- a/lib/puppet/face/azure_sqldb.rb +++ b/lib/puppet/face/azure_sqldb.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/sql_database' Puppet::Face.define(:azure_sqldb, '1.0.0') do diff --git a/lib/puppet/face/azure_sqldb/create.rb b/lib/puppet/face/azure_sqldb/create.rb index c274bce..099a140 100644 --- a/lib/puppet/face/azure_sqldb/create.rb +++ b/lib/puppet/face/azure_sqldb/create.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_sqldb, '1.0.0' do diff --git a/lib/puppet/face/azure_sqldb/create_firewall.rb b/lib/puppet/face/azure_sqldb/create_firewall.rb index e464a8d..1e976c1 100644 --- a/lib/puppet/face/azure_sqldb/create_firewall.rb +++ b/lib/puppet/face/azure_sqldb/create_firewall.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_sqldb, '1.0.0' do diff --git a/lib/puppet/face/azure_sqldb/delete.rb b/lib/puppet/face/azure_sqldb/delete.rb index 340bfd0..117c139 100644 --- a/lib/puppet/face/azure_sqldb/delete.rb +++ b/lib/puppet/face/azure_sqldb/delete.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_sqldb, '1.0.0' do diff --git a/lib/puppet/face/azure_sqldb/delete_firewall.rb b/lib/puppet/face/azure_sqldb/delete_firewall.rb index 088dc04..832197d 100644 --- a/lib/puppet/face/azure_sqldb/delete_firewall.rb +++ b/lib/puppet/face/azure_sqldb/delete_firewall.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_sqldb, '1.0.0' do diff --git a/lib/puppet/face/azure_sqldb/list.rb b/lib/puppet/face/azure_sqldb/list.rb index 4ec41d1..3cf451d 100644 --- a/lib/puppet/face/azure_sqldb/list.rb +++ b/lib/puppet/face/azure_sqldb/list.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'tilt' diff --git a/lib/puppet/face/azure_sqldb/list_firewall.rb b/lib/puppet/face/azure_sqldb/list_firewall.rb index e0322ef..c23b890 100644 --- a/lib/puppet/face/azure_sqldb/list_firewall.rb +++ b/lib/puppet/face/azure_sqldb/list_firewall.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_sqldb, '1.0.0' do diff --git a/lib/puppet/face/azure_sqldb/reset_password.rb b/lib/puppet/face/azure_sqldb/reset_password.rb index 543205e..96510d7 100644 --- a/lib/puppet/face/azure_sqldb/reset_password.rb +++ b/lib/puppet/face/azure_sqldb/reset_password.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_sqldb, '1.0.0' do diff --git a/lib/puppet/face/azure_storage.rb b/lib/puppet/face/azure_storage.rb index 28b5fa4..4498984 100644 --- a/lib/puppet/face/azure_storage.rb +++ b/lib/puppet/face/azure_storage.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/storage_account' Puppet::Face.define(:azure_storage, '1.0.0') do diff --git a/lib/puppet/face/azure_storage/create.rb b/lib/puppet/face/azure_storage/create.rb index dc60d51..20cb2e8 100644 --- a/lib/puppet/face/azure_storage/create.rb +++ b/lib/puppet/face/azure_storage/create.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_storage, '1.0.0' do diff --git a/lib/puppet/face/azure_storage/delete.rb b/lib/puppet/face/azure_storage/delete.rb index ae7b7e9..9a4b9d8 100644 --- a/lib/puppet/face/azure_storage/delete.rb +++ b/lib/puppet/face/azure_storage/delete.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_storage, '1.0.0' do diff --git a/lib/puppet/face/azure_storage/list.rb b/lib/puppet/face/azure_storage/list.rb index 8ff3e73..c2c6334 100644 --- a/lib/puppet/face/azure_storage/list.rb +++ b/lib/puppet/face/azure_storage/list.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'tilt' diff --git a/lib/puppet/face/azure_storage/update.rb b/lib/puppet/face/azure_storage/update.rb index 4675a62..e53c328 100644 --- a/lib/puppet/face/azure_storage/update.rb +++ b/lib/puppet/face/azure_storage/update.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_storage, '1.0.0' do diff --git a/lib/puppet/face/azure_vm.rb b/lib/puppet/face/azure_vm.rb index 37b714f..bf467ea 100644 --- a/lib/puppet/face/azure_vm.rb +++ b/lib/puppet/face/azure_vm.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/virtual_machine' Puppet::Face.define(:azure_vm, '1.0.0') do diff --git a/lib/puppet/face/azure_vm/add_disk.rb b/lib/puppet/face/azure_vm/add_disk.rb index bc1a024..89a02db 100644 --- a/lib/puppet/face/azure_vm/add_disk.rb +++ b/lib/puppet/face/azure_vm/add_disk.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/add_role.rb b/lib/puppet/face/azure_vm/add_role.rb index cffb427..85d5485 100644 --- a/lib/puppet/face/azure_vm/add_role.rb +++ b/lib/puppet/face/azure_vm/add_role.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/bootstrap.rb b/lib/puppet/face/azure_vm/bootstrap.rb index 718cee7..5d5ec51 100644 --- a/lib/puppet/face/azure_vm/bootstrap.rb +++ b/lib/puppet/face/azure_vm/bootstrap.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'puppet/azurepack/bootstrap' diff --git a/lib/puppet/face/azure_vm/create.rb b/lib/puppet/face/azure_vm/create.rb index 79b9f8b..faff89c 100644 --- a/lib/puppet/face/azure_vm/create.rb +++ b/lib/puppet/face/azure_vm/create.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/delete.rb b/lib/puppet/face/azure_vm/delete.rb index 3f0cbf9..3a368ab 100644 --- a/lib/puppet/face/azure_vm/delete.rb +++ b/lib/puppet/face/azure_vm/delete.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/delete_endpoint.rb b/lib/puppet/face/azure_vm/delete_endpoint.rb index 1166c8d..6a557b7 100644 --- a/lib/puppet/face/azure_vm/delete_endpoint.rb +++ b/lib/puppet/face/azure_vm/delete_endpoint.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/images.rb b/lib/puppet/face/azure_vm/images.rb index f063179..128e3e2 100644 --- a/lib/puppet/face/azure_vm/images.rb +++ b/lib/puppet/face/azure_vm/images.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/locations.rb b/lib/puppet/face/azure_vm/locations.rb index 8b6b3cc..7e3ed82 100644 --- a/lib/puppet/face/azure_vm/locations.rb +++ b/lib/puppet/face/azure_vm/locations.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/restart.rb b/lib/puppet/face/azure_vm/restart.rb index 0a1c016..e7ea85f 100644 --- a/lib/puppet/face/azure_vm/restart.rb +++ b/lib/puppet/face/azure_vm/restart.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/servers.rb b/lib/puppet/face/azure_vm/servers.rb index 28e3937..ee29510 100644 --- a/lib/puppet/face/azure_vm/servers.rb +++ b/lib/puppet/face/azure_vm/servers.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'tilt' diff --git a/lib/puppet/face/azure_vm/shutdown.rb b/lib/puppet/face/azure_vm/shutdown.rb index b9c0c48..5356a60 100644 --- a/lib/puppet/face/azure_vm/shutdown.rb +++ b/lib/puppet/face/azure_vm/shutdown.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/start.rb b/lib/puppet/face/azure_vm/start.rb index 8d47d5f..88f8b39 100644 --- a/lib/puppet/face/azure_vm/start.rb +++ b/lib/puppet/face/azure_vm/start.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vm/update_endpoint.rb b/lib/puppet/face/azure_vm/update_endpoint.rb index e73641d..b79725d 100644 --- a/lib/puppet/face/azure_vm/update_endpoint.rb +++ b/lib/puppet/face/azure_vm/update_endpoint.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vm, '1.0.0' do diff --git a/lib/puppet/face/azure_vnet.rb b/lib/puppet/face/azure_vnet.rb index ea5425d..9fb4ef0 100644 --- a/lib/puppet/face/azure_vnet.rb +++ b/lib/puppet/face/azure_vnet.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/virtual_network' Puppet::Face.define(:azure_vnet, '1.0.0') do diff --git a/lib/puppet/face/azure_vnet/list.rb b/lib/puppet/face/azure_vnet/list.rb index a1abd04..278c2a3 100644 --- a/lib/puppet/face/azure_vnet/list.rb +++ b/lib/puppet/face/azure_vnet/list.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'tilt' diff --git a/lib/puppet/face/azure_vnet/set_virtual_network.rb b/lib/puppet/face/azure_vnet/set_virtual_network.rb index b91b0a8..35688c1 100644 --- a/lib/puppet/face/azure_vnet/set_virtual_network.rb +++ b/lib/puppet/face/azure_vnet/set_virtual_network.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 Puppet::Face.define :azure_vnet, '1.0.0' do action :set do diff --git a/lib/puppet/face/azure_vnet/set_xml_schema.rb b/lib/puppet/face/azure_vnet/set_xml_schema.rb index 846dd82..cd73419 100644 --- a/lib/puppet/face/azure_vnet/set_xml_schema.rb +++ b/lib/puppet/face/azure_vnet/set_xml_schema.rb @@ -1,3 +1,7 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- Puppet::Face.define :azure_vnet, '1.0.0' do action :set_xml_schema do diff --git a/lib/puppet/option_validation.rb b/lib/puppet/option_validation.rb index e8e5236..261cf47 100644 --- a/lib/puppet/option_validation.rb +++ b/lib/puppet/option_validation.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 module Puppet module OptionValidation diff --git a/lib/puppet/sql_database.rb b/lib/puppet/sql_database.rb index 554c1ee..dd74a24 100644 --- a/lib/puppet/sql_database.rb +++ b/lib/puppet/sql_database.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/core/utility' require 'puppet/application_config' include Puppet::ApplicationConfig diff --git a/lib/puppet/storage_account.rb b/lib/puppet/storage_account.rb index 587284a..de783be 100644 --- a/lib/puppet/storage_account.rb +++ b/lib/puppet/storage_account.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/core/utility' require 'puppet/application_config' include Puppet::ApplicationConfig diff --git a/lib/puppet/virtual_machine.rb b/lib/puppet/virtual_machine.rb index c5b7430..3493de7 100644 --- a/lib/puppet/virtual_machine.rb +++ b/lib/puppet/virtual_machine.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application_config' require 'puppet/option_validation' include Puppet::ApplicationConfig diff --git a/lib/puppet/virtual_network.rb b/lib/puppet/virtual_network.rb index 43514f1..f052620 100644 --- a/lib/puppet/virtual_network.rb +++ b/lib/puppet/virtual_network.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + require 'puppet/application_config' require 'puppet/core/utility' include Puppet::ApplicationConfig diff --git a/manifests/bootstrap.pp b/manifests/bootstrap.pp index b202d4c..accc272 100644 --- a/manifests/bootstrap.pp +++ b/manifests/bootstrap.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::bootstrap ( $puppet_master_ip, $node_ipaddress, diff --git a/manifests/cloudservice.pp b/manifests/cloudservice.pp index ab01e15..6704867 100644 --- a/manifests/cloudservice.pp +++ b/manifests/cloudservice.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::cloudservice ( $azure_management_certificate, $azure_subscription_id, diff --git a/manifests/db.pp b/manifests/db.pp index 02f75d8..8bebf9c 100644 --- a/manifests/db.pp +++ b/manifests/db.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::db ( $azure_management_certificate, $azure_subscription_id, diff --git a/manifests/provisioner.pp b/manifests/provisioner.pp index 878994e..85a4211 100644 --- a/manifests/provisioner.pp +++ b/manifests/provisioner.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::provisioner ( # For windows azure authentication $azure_management_certificate, diff --git a/manifests/storage.pp b/manifests/storage.pp index 2670048..ec1e036 100644 --- a/manifests/storage.pp +++ b/manifests/storage.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::storage ( $azure_management_certificate, $azure_subscription_id, diff --git a/manifests/vm.pp b/manifests/vm.pp index af3dfa3..0fba6bb 100644 --- a/manifests/vm.pp +++ b/manifests/vm.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::vm ( $vm_name, $vm_user, diff --git a/manifests/vnet.pp b/manifests/vnet.pp index 3a27268..fe64fc5 100644 --- a/manifests/vnet.pp +++ b/manifests/vnet.pp @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + class windowsazure::vnet ( $azure_management_certificate, $azure_subscription_id, diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 12d8291..bea6f2f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'puppet' diff --git a/spec/support/credential_validation.rb b/spec/support/credential_validation.rb index de72383..e68e8b3 100644 --- a/spec/support/credential_validation.rb +++ b/spec/support/credential_validation.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 shared_examples 'validate authentication credential' do |service_method| diff --git a/spec/unit/puppet/face/azure_affinitygroup/create_spec.rb b/spec/unit/puppet/face/azure_affinitygroup/create_spec.rb index a82636f..e55c540 100644 --- a/spec/unit/puppet/face/azure_affinitygroup/create_spec.rb +++ b/spec/unit/puppet/face/azure_affinitygroup/create_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_affinitygroup/update_spec.rb b/spec/unit/puppet/face/azure_affinitygroup/update_spec.rb index 41e6893..c4af5ee 100644 --- a/spec/unit/puppet/face/azure_affinitygroup/update_spec.rb +++ b/spec/unit/puppet/face/azure_affinitygroup/update_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_cloudservice/create_spec.rb b/spec/unit/puppet/face/azure_cloudservice/create_spec.rb index 2fe50ee..56038eb 100644 --- a/spec/unit/puppet/face/azure_cloudservice/create_spec.rb +++ b/spec/unit/puppet/face/azure_cloudservice/create_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_cloudservice/delete_deployment_spec.rb b/spec/unit/puppet/face/azure_cloudservice/delete_deployment_spec.rb index 7a51d02..5db9508 100644 --- a/spec/unit/puppet/face/azure_cloudservice/delete_deployment_spec.rb +++ b/spec/unit/puppet/face/azure_cloudservice/delete_deployment_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_cloudservice/delete_spec.rb b/spec/unit/puppet/face/azure_cloudservice/delete_spec.rb index 0591fb4..c034fcf 100644 --- a/spec/unit/puppet/face/azure_cloudservice/delete_spec.rb +++ b/spec/unit/puppet/face/azure_cloudservice/delete_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_cloudservice/list_spec.rb b/spec/unit/puppet/face/azure_cloudservice/list_spec.rb index 2185de1..e2a020a 100644 --- a/spec/unit/puppet/face/azure_cloudservice/list_spec.rb +++ b/spec/unit/puppet/face/azure_cloudservice/list_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/create_firewall_spec.rb b/spec/unit/puppet/face/azure_sqldb/create_firewall_spec.rb index eedee4b..79ee6e6 100644 --- a/spec/unit/puppet/face/azure_sqldb/create_firewall_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/create_firewall_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/create_spec.rb b/spec/unit/puppet/face/azure_sqldb/create_spec.rb index 456000c..863dbb9 100644 --- a/spec/unit/puppet/face/azure_sqldb/create_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/create_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/delete_firewall_spec.rb b/spec/unit/puppet/face/azure_sqldb/delete_firewall_spec.rb index 3919261..de13407 100644 --- a/spec/unit/puppet/face/azure_sqldb/delete_firewall_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/delete_firewall_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/delete_spec.rb b/spec/unit/puppet/face/azure_sqldb/delete_spec.rb index 708b8a2..f34bcd2 100644 --- a/spec/unit/puppet/face/azure_sqldb/delete_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/delete_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/list_firewall_spec.rb b/spec/unit/puppet/face/azure_sqldb/list_firewall_spec.rb index 71777ac..b143273 100644 --- a/spec/unit/puppet/face/azure_sqldb/list_firewall_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/list_firewall_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/list_spec.rb b/spec/unit/puppet/face/azure_sqldb/list_spec.rb index 694bcc9..2317a45 100644 --- a/spec/unit/puppet/face/azure_sqldb/list_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/list_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_sqldb/reset_password_spec.rb b/spec/unit/puppet/face/azure_sqldb/reset_password_spec.rb index 1485d54..7342838 100644 --- a/spec/unit/puppet/face/azure_sqldb/reset_password_spec.rb +++ b/spec/unit/puppet/face/azure_sqldb/reset_password_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_storage/create_spec.rb b/spec/unit/puppet/face/azure_storage/create_spec.rb index 98a1299..b521814 100644 --- a/spec/unit/puppet/face/azure_storage/create_spec.rb +++ b/spec/unit/puppet/face/azure_storage/create_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_storage/delete_spec.rb b/spec/unit/puppet/face/azure_storage/delete_spec.rb index 9343928..a2de419 100644 --- a/spec/unit/puppet/face/azure_storage/delete_spec.rb +++ b/spec/unit/puppet/face/azure_storage/delete_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_storage/list_spec.rb b/spec/unit/puppet/face/azure_storage/list_spec.rb index ab6722d..00a09b9 100644 --- a/spec/unit/puppet/face/azure_storage/list_spec.rb +++ b/spec/unit/puppet/face/azure_storage/list_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_storage/update_spec.rb b/spec/unit/puppet/face/azure_storage/update_spec.rb index 629fca9..03fde3a 100644 --- a/spec/unit/puppet/face/azure_storage/update_spec.rb +++ b/spec/unit/puppet/face/azure_storage/update_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/add_disk_spec.rb b/spec/unit/puppet/face/azure_vm/add_disk_spec.rb index b87685b..c30015a 100644 --- a/spec/unit/puppet/face/azure_vm/add_disk_spec.rb +++ b/spec/unit/puppet/face/azure_vm/add_disk_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/add_role_spec.rb b/spec/unit/puppet/face/azure_vm/add_role_spec.rb index e05b0bb..a3c154f 100644 --- a/spec/unit/puppet/face/azure_vm/add_role_spec.rb +++ b/spec/unit/puppet/face/azure_vm/add_role_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/bootstrap_spec.rb b/spec/unit/puppet/face/azure_vm/bootstrap_spec.rb index 11f4acd..8421d43 100644 --- a/spec/unit/puppet/face/azure_vm/bootstrap_spec.rb +++ b/spec/unit/puppet/face/azure_vm/bootstrap_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/create_spec.rb b/spec/unit/puppet/face/azure_vm/create_spec.rb index 0549479..a7c4635 100644 --- a/spec/unit/puppet/face/azure_vm/create_spec.rb +++ b/spec/unit/puppet/face/azure_vm/create_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/delete_endpoint_spec.rb b/spec/unit/puppet/face/azure_vm/delete_endpoint_spec.rb index 3185bea..ec27231 100644 --- a/spec/unit/puppet/face/azure_vm/delete_endpoint_spec.rb +++ b/spec/unit/puppet/face/azure_vm/delete_endpoint_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/delete_spec.rb b/spec/unit/puppet/face/azure_vm/delete_spec.rb index bb82513..2b6df69 100644 --- a/spec/unit/puppet/face/azure_vm/delete_spec.rb +++ b/spec/unit/puppet/face/azure_vm/delete_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/images_spec.rb b/spec/unit/puppet/face/azure_vm/images_spec.rb index 90db93f..1743f9b 100644 --- a/spec/unit/puppet/face/azure_vm/images_spec.rb +++ b/spec/unit/puppet/face/azure_vm/images_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/locations_spec.rb b/spec/unit/puppet/face/azure_vm/locations_spec.rb index 16d40ce..5aef1e3 100644 --- a/spec/unit/puppet/face/azure_vm/locations_spec.rb +++ b/spec/unit/puppet/face/azure_vm/locations_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/restart_spec.rb b/spec/unit/puppet/face/azure_vm/restart_spec.rb index 7de3557..e2f31eb 100644 --- a/spec/unit/puppet/face/azure_vm/restart_spec.rb +++ b/spec/unit/puppet/face/azure_vm/restart_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/servers_spec.rb b/spec/unit/puppet/face/azure_vm/servers_spec.rb index bafe02a..ffad880 100644 --- a/spec/unit/puppet/face/azure_vm/servers_spec.rb +++ b/spec/unit/puppet/face/azure_vm/servers_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/shutdown_spec.rb b/spec/unit/puppet/face/azure_vm/shutdown_spec.rb index 4c6ef2a..eccda4d 100644 --- a/spec/unit/puppet/face/azure_vm/shutdown_spec.rb +++ b/spec/unit/puppet/face/azure_vm/shutdown_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/start_spec.rb b/spec/unit/puppet/face/azure_vm/start_spec.rb index 73ec274..091bca6 100644 --- a/spec/unit/puppet/face/azure_vm/start_spec.rb +++ b/spec/unit/puppet/face/azure_vm/start_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vm/update_endpoint_spec.rb b/spec/unit/puppet/face/azure_vm/update_endpoint_spec.rb index b0441c4..beb69f3 100644 --- a/spec/unit/puppet/face/azure_vm/update_endpoint_spec.rb +++ b/spec/unit/puppet/face/azure_vm/update_endpoint_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vnet/list_spec.rb b/spec/unit/puppet/face/azure_vnet/list_spec.rb index 07430d1..c52aa9d 100644 --- a/spec/unit/puppet/face/azure_vnet/list_spec.rb +++ b/spec/unit/puppet/face/azure_vnet/list_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vnet/set_virtual_network_spec.rb b/spec/unit/puppet/face/azure_vnet/set_virtual_network_spec.rb index 46f2f64..60d2db0 100644 --- a/spec/unit/puppet/face/azure_vnet/set_virtual_network_spec.rb +++ b/spec/unit/puppet/face/azure_vnet/set_virtual_network_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper' diff --git a/spec/unit/puppet/face/azure_vnet/set_xml_schema_spec.rb b/spec/unit/puppet/face/azure_vnet/set_xml_schema_spec.rb index 133f17a..f6c7be0 100644 --- a/spec/unit/puppet/face/azure_vnet/set_xml_schema_spec.rb +++ b/spec/unit/puppet/face/azure_vnet/set_xml_schema_spec.rb @@ -1,3 +1,8 @@ +#------------------------------------------------------------------------- +# Copyright (c) Microsoft Open Technologies, Inc. +# All Rights Reserved. Licensed under the Apache 2.0 License. +#-------------------------------------------------------------------------- + # encoding: UTF-8 require 'spec_helper'