Added a license file and copyright text.
This commit is contained in:
Родитель
204fb22eb8
Коммит
1ab1bb9a7c
|
@ -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.
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
#-------------------------------------------------------------------------
|
||||
# Copyright (c) Microsoft Open Technologies, Inc.
|
||||
# All Rights Reserved. Licensed under the Apache 2.0 License.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
require 'erb'
|
||||
|
||||
module Puppet
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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|
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче