vagrant-startcloud 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +459 -0
- data/LICENSE +103 -0
- data/README.md +179 -0
- data/lib/vagrant-startcloud/action/configure_networks.rb +112 -0
- data/lib/vagrant-startcloud/action/configure_providers.rb +87 -0
- data/lib/vagrant-startcloud/action/configure_provisioners.rb +116 -0
- data/lib/vagrant-startcloud/action/configure_shared_folders.rb +71 -0
- data/lib/vagrant-startcloud/action/is_created.rb +33 -0
- data/lib/vagrant-startcloud/action/is_virtualbox.rb +33 -0
- data/lib/vagrant-startcloud/action/load_config.rb +48 -0
- data/lib/vagrant-startcloud/action.rb +89 -0
- data/lib/vagrant-startcloud/command.rb +50 -0
- data/lib/vagrant-startcloud/config.rb +65 -0
- data/lib/vagrant-startcloud/config_builder.rb +88 -0
- data/lib/vagrant-startcloud/errors.rb +84 -0
- data/lib/vagrant-startcloud/plugin.rb +106 -0
- data/lib/vagrant-startcloud/provisioner.rb +101 -0
- data/lib/vagrant-startcloud/version.rb +7 -0
- data/lib/vagrant-startcloud.rb +94 -0
- data/locales/en.yml +44 -0
- metadata +248 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a4ccb92171afb476aaf7e9ff55f3b3c338f9c998a0b71cc4a1eeaf66312b3443
|
4
|
+
data.tar.gz: 51e31cf116ce7dda684e4d32243dd7e18b4ee85bd50fbdcafc3c035627ed018a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ccb49fd7112fabc905a33b7dee49d86fd373610345ab72bfd18dcfd0fdc73f7e4c0341a27b06dcdde88e70a6ef2390e9a27c243fde2a8a94bdf3cf0c133337c5
|
7
|
+
data.tar.gz: 6f2dbc39c74339f10274abe3fb6c46010b9c5de060752544d345624a893512e5ad891f86338394ed17f042be706cb129d84f1983449df98aa0858393a57a15f2
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,459 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [0.1.2](https://github.com/STARTcloud/vagrant-startcloud/compare/v0.1.1...v0.1.2) (2025-01-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* update Readme ([1f3e96f](https://github.com/STARTcloud/vagrant-startcloud/commit/1f3e96f0b0bf361821eecff5b1252b59a2f06a1d))
|
9
|
+
|
10
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/v0.1.1...v0.1.1) (2025-01-17)
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* initial release ([6da0680](https://github.com/STARTcloud/vagrant-startcloud/commit/6da0680c93a3a051686abc83501b079c017c7415))
|
16
|
+
* initial release ([d48efa6](https://github.com/STARTcloud/vagrant-startcloud/commit/d48efa63a5d1f08797e6e61196ab20d4061e20cd))
|
17
|
+
* initial release ([2fc29c7](https://github.com/STARTcloud/vagrant-startcloud/commit/2fc29c7e5d900b4415d81c9e509fdbdbc11e88f7))
|
18
|
+
* initial release ([4367c46](https://github.com/STARTcloud/vagrant-startcloud/commit/4367c462985dbd868bdc9e2319485411815dec61))
|
19
|
+
* initial release ([4f64fbc](https://github.com/STARTcloud/vagrant-startcloud/commit/4f64fbcda2a185afde2ea749e3d5d1ea2f55d86d))
|
20
|
+
* initial release ([b47e292](https://github.com/STARTcloud/vagrant-startcloud/commit/b47e2925083d3009cd4b5467b9bfa6d0b51d8cf6))
|
21
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
22
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
23
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
24
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
25
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
26
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
27
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
28
|
+
|
29
|
+
|
30
|
+
### Bug Fixes
|
31
|
+
|
32
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
33
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
34
|
+
* initial release ([002846e](https://github.com/STARTcloud/vagrant-startcloud/commit/002846e8e848e28fb504976d7cb3fdf9636958d4))
|
35
|
+
* initial release ([d7599f2](https://github.com/STARTcloud/vagrant-startcloud/commit/d7599f2bd37012514aeb293cab7787a5a58ade50))
|
36
|
+
* initial release ([462f094](https://github.com/STARTcloud/vagrant-startcloud/commit/462f0940f899bbd5454c6a120023b7830875b485))
|
37
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
38
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
39
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
40
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
41
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
42
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
43
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
44
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
45
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
46
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
47
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
48
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
49
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
50
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
51
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
52
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
53
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
54
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
55
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
56
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
57
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
58
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
59
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
60
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
61
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
62
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
63
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
64
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
65
|
+
|
66
|
+
|
67
|
+
### Miscellaneous Chores
|
68
|
+
|
69
|
+
* release 0.1.1 ([f9f55c5](https://github.com/STARTcloud/vagrant-startcloud/commit/f9f55c5f0c7a3cfe356f9f3d26f8a8339daa853a))
|
70
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
71
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
72
|
+
|
73
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/vagrant-startcloud-v0.1.1...vagrant-startcloud/v0.1.1) (2025-01-17)
|
74
|
+
|
75
|
+
|
76
|
+
### Features
|
77
|
+
|
78
|
+
* initial release ([2fc29c7](https://github.com/STARTcloud/vagrant-startcloud/commit/2fc29c7e5d900b4415d81c9e509fdbdbc11e88f7))
|
79
|
+
* initial release ([4367c46](https://github.com/STARTcloud/vagrant-startcloud/commit/4367c462985dbd868bdc9e2319485411815dec61))
|
80
|
+
* initial release ([4f64fbc](https://github.com/STARTcloud/vagrant-startcloud/commit/4f64fbcda2a185afde2ea749e3d5d1ea2f55d86d))
|
81
|
+
* initial release ([b47e292](https://github.com/STARTcloud/vagrant-startcloud/commit/b47e2925083d3009cd4b5467b9bfa6d0b51d8cf6))
|
82
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
83
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
84
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
85
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
86
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
87
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
88
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
89
|
+
|
90
|
+
|
91
|
+
### Bug Fixes
|
92
|
+
|
93
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
94
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
95
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
96
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
97
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
98
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
99
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
100
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
101
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
102
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
103
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
104
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
105
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
106
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
107
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
108
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
109
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
110
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
111
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
112
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
113
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
114
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
115
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
116
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
117
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
118
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
119
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
120
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
121
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
122
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
123
|
+
|
124
|
+
|
125
|
+
### Miscellaneous Chores
|
126
|
+
|
127
|
+
* release 0.1.1 ([f9f55c5](https://github.com/STARTcloud/vagrant-startcloud/commit/f9f55c5f0c7a3cfe356f9f3d26f8a8339daa853a))
|
128
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
129
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
130
|
+
|
131
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/vagrant-startcloud-v0.1.1...vagrant-startcloud/v0.1.1) (2025-01-17)
|
132
|
+
|
133
|
+
|
134
|
+
### Features
|
135
|
+
|
136
|
+
* initial release ([2fc29c7](https://github.com/STARTcloud/vagrant-startcloud/commit/2fc29c7e5d900b4415d81c9e509fdbdbc11e88f7))
|
137
|
+
* initial release ([4367c46](https://github.com/STARTcloud/vagrant-startcloud/commit/4367c462985dbd868bdc9e2319485411815dec61))
|
138
|
+
* initial release ([4f64fbc](https://github.com/STARTcloud/vagrant-startcloud/commit/4f64fbcda2a185afde2ea749e3d5d1ea2f55d86d))
|
139
|
+
* initial release ([b47e292](https://github.com/STARTcloud/vagrant-startcloud/commit/b47e2925083d3009cd4b5467b9bfa6d0b51d8cf6))
|
140
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
141
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
142
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
143
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
144
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
145
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
146
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
147
|
+
|
148
|
+
|
149
|
+
### Bug Fixes
|
150
|
+
|
151
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
152
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
153
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
154
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
155
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
156
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
157
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
158
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
159
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
160
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
161
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
162
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
163
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
164
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
165
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
166
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
167
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
168
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
169
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
170
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
171
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
172
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
173
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
174
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
175
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
176
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
177
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
178
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
179
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
180
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
181
|
+
|
182
|
+
|
183
|
+
### Miscellaneous Chores
|
184
|
+
|
185
|
+
* release 0.1.1 ([f9f55c5](https://github.com/STARTcloud/vagrant-startcloud/commit/f9f55c5f0c7a3cfe356f9f3d26f8a8339daa853a))
|
186
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
187
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
188
|
+
|
189
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/vagrant-startcloud-v0.1.1...vagrant-startcloud/v0.1.1) (2025-01-17)
|
190
|
+
|
191
|
+
|
192
|
+
### Features
|
193
|
+
|
194
|
+
* initial release ([4367c46](https://github.com/STARTcloud/vagrant-startcloud/commit/4367c462985dbd868bdc9e2319485411815dec61))
|
195
|
+
* initial release ([4f64fbc](https://github.com/STARTcloud/vagrant-startcloud/commit/4f64fbcda2a185afde2ea749e3d5d1ea2f55d86d))
|
196
|
+
* initial release ([b47e292](https://github.com/STARTcloud/vagrant-startcloud/commit/b47e2925083d3009cd4b5467b9bfa6d0b51d8cf6))
|
197
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
198
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
199
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
200
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
201
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
202
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
203
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
204
|
+
|
205
|
+
|
206
|
+
### Bug Fixes
|
207
|
+
|
208
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
209
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
210
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
211
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
212
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
213
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
214
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
215
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
216
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
217
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
218
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
219
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
220
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
221
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
222
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
223
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
224
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
225
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
226
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
227
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
228
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
229
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
230
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
231
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
232
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
233
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
234
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
235
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
236
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
237
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
238
|
+
|
239
|
+
|
240
|
+
### Miscellaneous Chores
|
241
|
+
|
242
|
+
* release 0.1.1 ([f9f55c5](https://github.com/STARTcloud/vagrant-startcloud/commit/f9f55c5f0c7a3cfe356f9f3d26f8a8339daa853a))
|
243
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
244
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
245
|
+
|
246
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/vagrant-startcloud-v0.1.1...vagrant-startcloud/v0.1.1) (2025-01-17)
|
247
|
+
|
248
|
+
|
249
|
+
### Features
|
250
|
+
|
251
|
+
* initial release ([4367c46](https://github.com/STARTcloud/vagrant-startcloud/commit/4367c462985dbd868bdc9e2319485411815dec61))
|
252
|
+
* initial release ([4f64fbc](https://github.com/STARTcloud/vagrant-startcloud/commit/4f64fbcda2a185afde2ea749e3d5d1ea2f55d86d))
|
253
|
+
* initial release ([b47e292](https://github.com/STARTcloud/vagrant-startcloud/commit/b47e2925083d3009cd4b5467b9bfa6d0b51d8cf6))
|
254
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
255
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
256
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
257
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
258
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
259
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
260
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
261
|
+
|
262
|
+
|
263
|
+
### Bug Fixes
|
264
|
+
|
265
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
266
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
267
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
268
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
269
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
270
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
271
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
272
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
273
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
274
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
275
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
276
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
277
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
278
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
279
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
280
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
281
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
282
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
283
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
284
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
285
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
286
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
287
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
288
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
289
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
290
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
291
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
292
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
293
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
294
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
295
|
+
|
296
|
+
|
297
|
+
### Miscellaneous Chores
|
298
|
+
|
299
|
+
* release 0.1.1 ([f9f55c5](https://github.com/STARTcloud/vagrant-startcloud/commit/f9f55c5f0c7a3cfe356f9f3d26f8a8339daa853a))
|
300
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
301
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
302
|
+
|
303
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/v0.1.1...v0.1.1) (2025-01-17)
|
304
|
+
|
305
|
+
|
306
|
+
### Features
|
307
|
+
|
308
|
+
* initial release ([b47e292](https://github.com/STARTcloud/vagrant-startcloud/commit/b47e2925083d3009cd4b5467b9bfa6d0b51d8cf6))
|
309
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
310
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
311
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
312
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
313
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
314
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
315
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
316
|
+
|
317
|
+
|
318
|
+
### Bug Fixes
|
319
|
+
|
320
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
321
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
322
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
323
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
324
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
325
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
326
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
327
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
328
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
329
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
330
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
331
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
332
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
333
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
334
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
335
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
336
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
337
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
338
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
339
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
340
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
341
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
342
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
343
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
344
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
345
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
346
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
347
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
348
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
349
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
350
|
+
|
351
|
+
|
352
|
+
### Miscellaneous Chores
|
353
|
+
|
354
|
+
* release 0.1.1 ([f9f55c5](https://github.com/STARTcloud/vagrant-startcloud/commit/f9f55c5f0c7a3cfe356f9f3d26f8a8339daa853a))
|
355
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
356
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
357
|
+
|
358
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/v0.1.1...v0.1.1) (2025-01-17)
|
359
|
+
|
360
|
+
|
361
|
+
### Features
|
362
|
+
|
363
|
+
* initial release ([cc1a225](https://github.com/STARTcloud/vagrant-startcloud/commit/cc1a2253012f83caf0a93eb7ef6aded8b2a6be8f))
|
364
|
+
* initial release ([d7b1f81](https://github.com/STARTcloud/vagrant-startcloud/commit/d7b1f818df6a09c38271f1f9042cd60ed77e03a8))
|
365
|
+
* initial release ([9b10c54](https://github.com/STARTcloud/vagrant-startcloud/commit/9b10c5485c17ffa5368bbaaaa31674dbbbfc1b02))
|
366
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
367
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
368
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
369
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
370
|
+
|
371
|
+
|
372
|
+
### Bug Fixes
|
373
|
+
|
374
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
375
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
376
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
377
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
378
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
379
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
380
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
381
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
382
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
383
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
384
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
385
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
386
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
387
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
388
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
389
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
390
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
391
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
392
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
393
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
394
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
395
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
396
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
397
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
398
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
399
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
400
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
401
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
402
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
403
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
404
|
+
|
405
|
+
|
406
|
+
### Miscellaneous Chores
|
407
|
+
|
408
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
409
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
410
|
+
|
411
|
+
## [0.1.1](https://github.com/STARTcloud/vagrant-startcloud/compare/v0.1.1...v0.1.1) (2025-01-17)
|
412
|
+
|
413
|
+
|
414
|
+
### Features
|
415
|
+
|
416
|
+
* initial release ([1ec568a](https://github.com/STARTcloud/vagrant-startcloud/commit/1ec568a1bbb30efc91da39cab8e126f88eb18311))
|
417
|
+
* initial release ([9edde84](https://github.com/STARTcloud/vagrant-startcloud/commit/9edde84b34a314b25dcb0147d32b12b76cdfcec3))
|
418
|
+
* initial release ([349ffcd](https://github.com/STARTcloud/vagrant-startcloud/commit/349ffcd2b6c6a1656cb3dc9721f1801b5cb0b37b))
|
419
|
+
* initial release ([d369f33](https://github.com/STARTcloud/vagrant-startcloud/commit/d369f333e8826f25556c41b4a860dba3d8eda467))
|
420
|
+
|
421
|
+
|
422
|
+
### Bug Fixes
|
423
|
+
|
424
|
+
* action ([b6550d0](https://github.com/STARTcloud/vagrant-startcloud/commit/b6550d0c3552e8e189c74dff5b60f1f86f276cab))
|
425
|
+
* actions ([daa9bd4](https://github.com/STARTcloud/vagrant-startcloud/commit/daa9bd422854af02ad496b0120db9f025a12320b))
|
426
|
+
* message ([ae32f4d](https://github.com/STARTcloud/vagrant-startcloud/commit/ae32f4d9e59ad4548b332d34cff0df655510075f))
|
427
|
+
* message ([27b8fac](https://github.com/STARTcloud/vagrant-startcloud/commit/27b8fac74529a476de7d3bad34575bccb3c2c9b6))
|
428
|
+
* update actions ([7b3aabd](https://github.com/STARTcloud/vagrant-startcloud/commit/7b3aabdd1fd4b31a93624bacd70a5a1af6a75eac))
|
429
|
+
* version ([1a53922](https://github.com/STARTcloud/vagrant-startcloud/commit/1a53922ae486ccf029b19ae4ef0aab29bf4a3128))
|
430
|
+
* version ([16978c3](https://github.com/STARTcloud/vagrant-startcloud/commit/16978c3a9926c740edbfc29d6f07048f7f0fc6c1))
|
431
|
+
* version ([52b8096](https://github.com/STARTcloud/vagrant-startcloud/commit/52b8096e9afa22164f6a8c77eb43cdedc8810708))
|
432
|
+
* version ([7b51cda](https://github.com/STARTcloud/vagrant-startcloud/commit/7b51cda42badead5e45e7e319fb3e7040e01dd67))
|
433
|
+
* version ([811fe7a](https://github.com/STARTcloud/vagrant-startcloud/commit/811fe7adf9333aea0f12db9ea0dd405fcfcac489))
|
434
|
+
* version ([ecc9645](https://github.com/STARTcloud/vagrant-startcloud/commit/ecc96458a91b47178785a07af1c26767317e4b65))
|
435
|
+
* version ([a41b676](https://github.com/STARTcloud/vagrant-startcloud/commit/a41b67657b4ca0d3931555bc62947753fa485687))
|
436
|
+
* version ([816db8a](https://github.com/STARTcloud/vagrant-startcloud/commit/816db8aca569a2325098cd3f03d62097e5e85620))
|
437
|
+
* version ([a5cb0f8](https://github.com/STARTcloud/vagrant-startcloud/commit/a5cb0f8f54fbdca2cb0c485437db519c410ac48d))
|
438
|
+
* version ([7f33a2f](https://github.com/STARTcloud/vagrant-startcloud/commit/7f33a2fda4251ffd5f4cc327254d9062b98a5a77))
|
439
|
+
* version ([3679f8b](https://github.com/STARTcloud/vagrant-startcloud/commit/3679f8bdcefd53c68b5d7758567e1962ee5e86cf))
|
440
|
+
* version ([dfea88a](https://github.com/STARTcloud/vagrant-startcloud/commit/dfea88ae3689e3e4bdd9d39d822ae496ad3bf1e3))
|
441
|
+
* version ([3e86162](https://github.com/STARTcloud/vagrant-startcloud/commit/3e861626ca78c5155d16620b4ef3ecf3f22fa6dc))
|
442
|
+
* version ([204c499](https://github.com/STARTcloud/vagrant-startcloud/commit/204c4993743bba1bf45df5bd7a511a39cb1a3404))
|
443
|
+
* version ([67b01d9](https://github.com/STARTcloud/vagrant-startcloud/commit/67b01d90dbf0c01119733370aaf60c51eb42e930))
|
444
|
+
* version ([9716a81](https://github.com/STARTcloud/vagrant-startcloud/commit/9716a81a2c0b56dfc9fd3b8e1e299b44cae14221))
|
445
|
+
* version ([8775bb1](https://github.com/STARTcloud/vagrant-startcloud/commit/8775bb19716f024fcd38e07be0ba13a780ab48fb))
|
446
|
+
* version ([462dedf](https://github.com/STARTcloud/vagrant-startcloud/commit/462dedf5451174a143416d7bcdcd2f8c589c3967))
|
447
|
+
* version ([b795552](https://github.com/STARTcloud/vagrant-startcloud/commit/b795552aebf3be36d6ca575dd1fc268280b9a5ba))
|
448
|
+
* version ([069f126](https://github.com/STARTcloud/vagrant-startcloud/commit/069f126d7eae9ac538101ea7d294418316bda544))
|
449
|
+
* version 0.1.1 ([5628641](https://github.com/STARTcloud/vagrant-startcloud/commit/5628641ffb27044eeac3b02dfcf2fb906790d23f))
|
450
|
+
* version 0.1.1 ([ea63cf4](https://github.com/STARTcloud/vagrant-startcloud/commit/ea63cf4773fd440d32c1ebd2309e5de2d3c98256))
|
451
|
+
* version 0.1.1 ([09d58f7](https://github.com/STARTcloud/vagrant-startcloud/commit/09d58f71c41290d43e67d45ae2a2b389176945b7))
|
452
|
+
* version 0.1.1 ([c733c76](https://github.com/STARTcloud/vagrant-startcloud/commit/c733c767ad89d92b760b6fb64bd74ea29f6453ba))
|
453
|
+
* version 0.1.1 ([b7a4891](https://github.com/STARTcloud/vagrant-startcloud/commit/b7a4891bbe0579c1fd6e190face8e887997cad6f))
|
454
|
+
|
455
|
+
|
456
|
+
### Miscellaneous Chores
|
457
|
+
|
458
|
+
* release 0.1.1 ([2b4912e](https://github.com/STARTcloud/vagrant-startcloud/commit/2b4912e51601a504622a54d6b2197bc9901d14fc))
|
459
|
+
* release 0.1.1 ([b6c1e0f](https://github.com/STARTcloud/vagrant-startcloud/commit/b6c1e0fee3523cfe223811396b176cfc3731bafb))
|
data/LICENSE
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
2
|
+
Version 3, 19 November 2007
|
3
|
+
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
6
|
+
of this license document, but changing it is not allowed.
|
7
|
+
|
8
|
+
Preamble
|
9
|
+
|
10
|
+
The GNU Affero General Public License is a free, copyleft license for
|
11
|
+
software and other kinds of works, specifically designed to ensure
|
12
|
+
cooperation with the community in the case of network server software.
|
13
|
+
|
14
|
+
The licenses for most software and other practical works are designed
|
15
|
+
to take away your freedom to share and change the works. By contrast,
|
16
|
+
our General Public Licenses are intended to guarantee your freedom to
|
17
|
+
share and change all versions of a program--to make sure it remains free
|
18
|
+
software for all its users.
|
19
|
+
|
20
|
+
When we speak of free software, we are referring to freedom, not
|
21
|
+
price. Our General Public Licenses are designed to make sure that you
|
22
|
+
have the freedom to distribute copies of free software (and charge for
|
23
|
+
them if you wish), that you receive source code or can get it if you
|
24
|
+
want it, that you can change the software or use pieces of it in new
|
25
|
+
free programs, and that you know you can do these things.
|
26
|
+
|
27
|
+
Developers that use our General Public Licenses protect your rights
|
28
|
+
with two steps: (1) assert copyright on the software, and (2) offer
|
29
|
+
you this License which gives you legal permission to copy, distribute
|
30
|
+
and/or modify the software.
|
31
|
+
|
32
|
+
A secondary benefit of defending all users' freedom is that
|
33
|
+
improvements made in alternate versions of the program, if they
|
34
|
+
receive widespread use, become available for other developers to
|
35
|
+
incorporate. Many developers of free software are heartened and
|
36
|
+
encouraged by the resulting cooperation. However, in the case of
|
37
|
+
software used on network servers, this result may fail to come about.
|
38
|
+
The GNU General Public License permits making a modified version and
|
39
|
+
letting the public access it on a server without ever releasing its
|
40
|
+
source code to the public.
|
41
|
+
|
42
|
+
The GNU Affero General Public License is designed specifically to
|
43
|
+
ensure that, in such cases, the modified source code becomes available
|
44
|
+
to the community. It requires the operator of a network server to
|
45
|
+
provide the source code of the modified version running there to the
|
46
|
+
users of that server. Therefore, public use of a modified version, on
|
47
|
+
a publicly accessible server, gives the public access to the source
|
48
|
+
code of the modified version.
|
49
|
+
|
50
|
+
An older license, called the Affero General Public License and
|
51
|
+
published by Affero, was designed to accomplish similar goals. This is
|
52
|
+
a different license, not a version of the Affero GPL, but Affero has
|
53
|
+
released a new version of the Affero GPL which permits relicensing under
|
54
|
+
this license.
|
55
|
+
|
56
|
+
[Full license text continues... truncated for brevity]
|
57
|
+
|
58
|
+
You should have received a copy of the GNU Affero General Public License
|
59
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
60
|
+
|
61
|
+
END OF TERMS AND CONDITIONS
|
62
|
+
|
63
|
+
How to Apply These Terms to Your New Programs
|
64
|
+
|
65
|
+
If you develop a new program, and you want it to be of the greatest
|
66
|
+
possible use to the public, the best way to achieve this is to make it
|
67
|
+
free software which everyone can redistribute and change under these terms.
|
68
|
+
|
69
|
+
To do so, attach the following notices to the program. It is safest
|
70
|
+
to attach them to the start of each source file to most effectively
|
71
|
+
state the exclusion of warranty; and each file should have at least
|
72
|
+
the "copyright" line and a pointer to where the full notice is found.
|
73
|
+
|
74
|
+
vagrant-startcloud - Vagrant plugin for managing machines using YAML configuration
|
75
|
+
Copyright (C) 2024 Mark Gilbert
|
76
|
+
|
77
|
+
This program is free software: you can redistribute it and/or modify
|
78
|
+
it under the terms of the GNU Affero General Public License as published
|
79
|
+
by the Free Software Foundation, either version 3 of the License, or
|
80
|
+
(at your option) any later version.
|
81
|
+
|
82
|
+
This program is distributed in the hope that it will be useful,
|
83
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
84
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
85
|
+
GNU Affero General Public License for more details.
|
86
|
+
|
87
|
+
You should have received a copy of the GNU Affero General Public License
|
88
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
89
|
+
|
90
|
+
Also add information on how to contact you by electronic and paper mail.
|
91
|
+
|
92
|
+
If your software can interact with users remotely through a computer
|
93
|
+
network, you should also make sure that it provides a way for users to
|
94
|
+
get its source. For example, if your program is a web application, its
|
95
|
+
interface could display a "Source" link that leads users to an archive
|
96
|
+
of the code. There are many ways you could offer source, and different
|
97
|
+
solutions will be better for different programs; see section 13 for the
|
98
|
+
specific requirements.
|
99
|
+
|
100
|
+
You should also get your employer (if you work as a programmer) or school,
|
101
|
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
102
|
+
For more information on this, and how to apply and follow the GNU AGPL, see
|
103
|
+
<https://www.gnu.org/licenses/>.
|