Skip to content

Commit 4abfd26

Browse files
author
rallytime
committed
Merge branch '2017.7' into '2018.3'
Conflicts: - requirements/dev_python27.txt - requirements/dev_python34.txt - salt/fileclient.py - salt/output/__init__.py - salt/serializers/configparser.py - salt/states/pkg.py - salt/states/zpool.py - salt/transport/tcp.py - tests/integration/cloud/providers/test_ec2.py - tests/integration/modules/test_mac_user.py - tests/integration/modules/test_pip.py - tests/integration/modules/test_pkg.py - tests/integration/modules/test_service.py - tests/integration/states/test_pip_state.py - tests/integration/states/test_user.py - tests/unit/modules/test_cmdmod.py
2 parents 1efe891 + 46618d2 commit 4abfd26

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2369
-110
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ MANIFEST
1111
*.wpr
1212
*.wpu
1313
*.DS_Store
14+
.pytest_cache
15+
Pipfile.lock
1416

1517
# virtualenv
1618
# - ignores directories of a virtualenv when you create it right on

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
source 'https://rubygems.org'
44

5-
gem 'test-kitchen', :git => 'https://github.com/gtmanfred/test-kitchen.git'
6-
gem 'kitchen-salt', :git => 'https://github.com/saltstack/kitchen-salt.git'
5+
gem 'test-kitchen', '~>1.21'
6+
gem 'kitchen-salt', '~>0.2'
77
gem 'kitchen-sync'
88
gem 'git'
99

@@ -20,7 +20,7 @@ group :windows do
2020
gem 'vagrant-wrapper'
2121
gem 'kitchen-vagrant'
2222
gem 'winrm', '~>2.0'
23-
gem 'winrm-fs', :git => 'https://github.com/gtmanfred/winrm-fs.git'
23+
gem 'winrm-fs', :git => 'https://github.com/WinRb/winrm-fs.git'
2424
end
2525

2626
group :ec2 do

Pipfile

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
Jinja2 = "*"
8+
msgpack-python = ">0.3,!=0.5.5"
9+
PyYAML = "*"
10+
MarkupSafe = "*"
11+
requests = ">=1.0.0"
12+
tornado = ">=4.2.1,<5.0"
13+
pycrypto = ">=2.6.1"
14+
pyzmq = ">=2.2.0"
15+
16+
[dev-packages]
17+
mock = ">=2.0.0"
18+
apache-libcloud = ">=0.14.0"
19+
boto = ">=2.32.1"
20+
boto3 = ">=1.2.1"
21+
moto = ">=0.3.6"
22+
SaltPyLint = ">=v2017.3.6"
23+
pytest = ">=3.5.0"
24+
25+
[packages.futures]
26+
# Required by Tornado to handle threads stuff.
27+
version = ">=2.0"
28+
markers = "python_version < '3.0'"
29+
30+
[dev-packages.pytest-salt]
31+
git = "git://github.com/saltstack/pytest-salt.git"
32+
ref = "master"
33+
34+
[dev-packages.httpretty]
35+
# httpretty Needs to be here for now even though it's a dependency of boto.
36+
# A pip install on a fresh system will decide to target httpretty 0.8.10 to
37+
# satisfy other requirements, and httpretty 0.8.10 has bugs in setup.py that
38+
# prevent it from being successfully installed (at least on Python 3.4).
39+
version = "*"
40+
markers = "python_version >= '3.4'"

doc/topics/cloud/linode.rst

+14-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ at ``/etc/salt/cloud.profiles`` or in the ``/etc/salt/cloud.profiles.d/`` direct
4444
4545
linode_1024:
4646
provider: my-linode-config
47-
size: Linode 2048
47+
size: Linode 2GB
4848
image: CentOS 7
4949
location: London, England, UK
5050
@@ -77,12 +77,14 @@ command:
7777
----------
7878
linode:
7979
----------
80-
Linode 1024:
80+
Linode 2GB:
8181
----------
8282
AVAIL:
8383
----------
8484
10:
8585
500
86+
11:
87+
500
8688
2:
8789
500
8890
3:
@@ -100,11 +102,19 @@ command:
100102
CORES:
101103
1
102104
DISK:
103-
24
105+
50
104106
HOURLY:
105107
0.015
106108
LABEL:
107-
Linode 1024
109+
Linode 2GB
110+
PLANID:
111+
2
112+
PRICE:
113+
10.0
114+
RAM:
115+
2048
116+
XFER:
117+
2000
108118
...SNIP...
109119
110120

0 commit comments

Comments
 (0)