~nskaggs/+junk/xenial-test

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright 2015 Canonical Ltd.
// Copyright 2015 Cloudbase Solutions SRL
// Licensed under the AGPLv3, see LICENCE file for details.

package cloudinit

import (
	"github.com/juju/utils/packaging"
	"github.com/juju/utils/proxy"
)

// windowsCloudConfig is the cloudconfig type specific to Windows machines.
// It mostly deals entirely with passing the equivalent of runcmds to
// cloudbase-init, leaving most of the other functionalities uninmplemented.
// It implements the CloudConfig interface.
type windowsCloudConfig struct {
	*cloudConfig
}

// SetPackageProxy is defined on the PackageProxyConfig interface.
func (cfg *windowsCloudConfig) SetPackageProxy(url string) {
}

// UnsetPackageProxy is defined on the PackageProxyConfig interface.
func (cfg *windowsCloudConfig) UnsetPackageProxy() {
}

// PackageProxy is defined on the PackageProxyConfig interface.
func (cfg *windowsCloudConfig) PackageProxy() string {
	return ""
}

// SetPackageMirror is defined on the PackageMirrorConfig interface.
func (cfg *windowsCloudConfig) SetPackageMirror(url string) {
}

// UnsetPackageMirror is defined on the PackageMirrorConfig interface.
func (cfg *windowsCloudConfig) UnsetPackageMirror() {
}

// PackageMirror is defined on the PackageMirrorConfig interface.
func (cfg *windowsCloudConfig) PackageMirror() string {
	return ""
}

// AddPackageSource is defined on the PackageSourcesConfig interface.
func (cfg *windowsCloudConfig) AddPackageSource(src packaging.PackageSource) {
}

// PackageSources is defined on the PackageSourcesConfig interface.
func (cfg *windowsCloudConfig) PackageSources() []packaging.PackageSource {
	return nil
}

// AddPackagePreferences is defined on the PackageSourcesConfig interface.
func (cfg *windowsCloudConfig) AddPackagePreferences(prefs packaging.PackagePreferences) {
}

// PackagePreferences is defined on the PackageSourcesConfig interface.
func (cfg *windowsCloudConfig) PackagePreferences() []packaging.PackagePreferences {
	return nil
}

// RenderYAML is defined on the RenderConfig interface.
func (cfg *windowsCloudConfig) RenderYAML() ([]byte, error) {
	return cfg.renderWindows()
}

// RenderScript is defined on the RenderConfig interface.
func (cfg *windowsCloudConfig) RenderScript() (string, error) {
	// NOTE: This shouldn't really be called on windows as it's used only for
	// initialization via ssh.
	script, err := cfg.renderWindows()
	if err != nil {
		return "", err
	}

	return string(script), err
}

// getCommandsForAddingPackages is defined on the RenderConfig interface.
func (cfg *windowsCloudConfig) getCommandsForAddingPackages() ([]string, error) {
	return nil, nil
}

// renderWindows is a helper function which renders the runCmds of the Windows
// CloudConfig to a PowerShell script.
func (cfg *windowsCloudConfig) renderWindows() ([]byte, error) {
	winCmds := cfg.RunCmds()
	var script []byte
	newline := "\r\n"
	header := "#ps1_sysnative\r\n"
	script = append(script, header...)
	for _, cmd := range winCmds {
		script = append(script, newline...)
		script = append(script, cmd...)
	}
	return script, nil
}

// AddPackageCommands is defined on the AdvancedPackagingConfig interface.
func (cfg *windowsCloudConfig) AddPackageCommands(
	aptProxySettings proxy.Settings,
	aptMirror string,
	addUpdateScripts bool,
	addUpgradeScripts bool,
) {
	return
}

// AddCloudArchiveCloudTools is defined on the AdvancedPackagingConfig
// interface.
func (cfg *windowsCloudConfig) AddCloudArchiveCloudTools() {
}

// addRequiredPackages is defined on the AdvancedPackagingConfig interface.
func (cfg *windowsCloudConfig) addRequiredPackages() {
}

// updateProxySettings is defined on the AdvancedPackagingConfig interface.
func (cfg *windowsCloudConfig) updateProxySettings(proxy.Settings) {
}