Thomas S Hatch
|
0576bd97c4
|
Merge pull request #2459 from UtahDave/fix_nova_virtual
Add virtual function for nova.py
|
2012-11-05 20:26:15 -08:00 |
|
Thomas S Hatch
|
44bc8f47f6
|
Merge pull request #2458 from FireHost/scientific_linux_os_grain
Add os grain mapping for 'Scientific Linux'
|
2012-11-05 20:16:19 -08:00 |
|
Thomas S Hatch
|
508849bda6
|
Merge pull request #2457 from techhat/develop
Adding flavor functions and image_list to nova
|
2012-11-05 20:06:21 -08:00 |
|
David Boucha
|
a02fcea49c
|
Add virtual function for nova.py
All modules should have __virtual__ function
|
2012-11-05 17:41:45 -07:00 |
|
Joseph Hall
|
3963dea390
|
Add ability to modify nova image metadata
|
2012-11-05 16:26:18 -07:00 |
|
Aaron Tygart
|
2c578fd76a
|
Add os grain mapping for 'Scientific Linux'
|
2012-11-05 16:20:40 -06:00 |
|
Joseph Hall
|
28f04d1ca1
|
Adding image_list (and updating flavor_list)
|
2012-11-05 15:17:37 -07:00 |
|
Joseph Hall
|
3dd91b4127
|
Added create and delete functions for nova
|
2012-11-05 15:02:43 -07:00 |
|
Sean Channel
|
1f8d36431b
|
Merge pull request #2456 from seanchannel/develop
switch to depending on zm3 for debian package
|
2012-11-05 14:01:23 -08:00 |
|
Sean Channel
|
75f2a58b4e
|
switch to depending on zm3 for debian package
|
2012-11-05 13:54:13 -08:00 |
|
Joseph Hall
|
62ff45c745
|
Technically, nova is using keystone authentication here
|
2012-11-05 14:21:59 -07:00 |
|
Thomas S Hatch
|
c1b8b0b53d
|
Merge pull request #2453 from techhat/master
Adding basic openstack nova module
|
2012-11-05 11:39:56 -08:00 |
|
Thomas S Hatch
|
c71335a40b
|
Merge pull request #2452 from giantlock/develop
bring interface of freebsdservice in order according modules/service.py
|
2012-11-05 11:35:55 -08:00 |
|
Thomas S Hatch
|
87cefbbb99
|
Merge pull request #2451 from twinshadow/patch-2
Update salt/modules/network.py: get all interfaces for the `ip` command
|
2012-11-05 11:31:40 -08:00 |
|
Joseph Hall
|
b5e7983905
|
Adding basic openstack nova module
|
2012-11-05 11:04:38 -07:00 |
|
Denis Generalov
|
28be897847
|
*) add functions enable(name), disable(name), enabled(name), disabled(name) according common service interface.
*) fix pep8 typo
|
2012-11-05 21:06:04 +04:00 |
|
Anthony Cornehl
|
ca41f7081e
|
Update salt/modules/network.py
The `ip address` command does not list interfaces that are not up/configured. It now gets the output from the `ip link` command as well for those interfaces.
Before:
<pre>
{'brynhilde': {'eth1': {'hwaddr': '00:30:48:34:2a:cb',
'inet': [{'address': '10.7.161.4',
'broadcast': '10.7.175.255',
'label': 'eth1',
'netmask': '255.255.240.0'}],
'inet6': [{'address': '2620:0:170:9900:230:48ff:fe34:2acb',
'prefixlen': '64'},
{'address': 'fe80::230:48ff:fe34:2acb',
'prefixlen': '64'}],
'up': True},
'eth4': {'hwaddr': '00:02:c9:32:06:30',
'inet': [{'address': '75.75.11.23',
'broadcast': '75.75.11.255',
'label': 'eth4',
'netmask': '255.255.255.0'}],
'inet6': [{'address': 'fe80::202:c9ff:fe32:630',
'prefixlen': '64'}],
'up': True},
'lo': {'hwaddr': '00:00:00:00:00:00',
'inet': [{'address': '127.0.0.1',
'broadcast': None,
'label': 'lo',
'netmask': '255.0.0.0'}],
'inet6': [{'address': '::1', 'prefixlen': '128'}],
'up': True}}}
</pre>
After:
<pre>
{'brynhilde': {'eth0': {'hwaddr': '00:30:48:34:2a:ca', 'up': False},
'eth1': {'hwaddr': '00:30:48:34:2a:cb',
'inet': [{'address': '10.7.161.4',
'broadcast': '10.7.175.255',
'label': 'eth1',
'netmask': '255.255.240.0'}],
'inet6': [{'address': '2620:0:170:9900:230:48ff:fe34:2acb',
'prefixlen': '64'},
{'address': 'fe80::230:48ff:fe34:2acb',
'prefixlen': '64'}],
'up': True},
'eth2': {'hwaddr': '00:07:43:13:48:00', 'up': False},
'eth3': {'hwaddr': '00:07:43:13:48:08', 'up': False},
'eth4': {'hwaddr': '00:02:c9:32:06:30',
'inet': [{'address': '75.75.11.23',
'broadcast': '75.75.11.255',
'label': 'eth4',
'netmask': '255.255.255.0'}],
'inet6': [{'address': 'fe80::202:c9ff:fe32:630',
'prefixlen': '64'}],
'up': True},
'lo': {'hwaddr': '00:00:00:00:00:00', 'up': True}}}
</pre>
|
2012-11-05 09:03:22 -08:00 |
|
Thomas S Hatch
|
8578c69df4
|
Merge pull request #2450 from giantlock/develop
Module for viewing and modifying sysctl parameters for FreeBSD
|
2012-11-05 08:46:33 -08:00 |
|
Thomas S Hatch
|
7e3319cff5
|
minor spelling fix in doc string
|
2012-11-05 09:38:37 -07:00 |
|
Denis Generalov
|
d2986cb1e8
|
Module for viewing and modifying sysctl parameters for FreeBSD
|
2012-11-05 19:49:18 +04:00 |
|
Joseph Hall
|
763f8098dd
|
Merge pull request #2447 from danielliang/develop
fix two typos in pip module: --extra-index-url, --download-cache
|
2012-11-05 05:41:32 -08:00 |
|
Pedro Algarvio
|
667f3f0fcb
|
Travis-CI should build on all branches.
|
2012-11-05 13:32:52 +00:00 |
|
Hung-te Liang
|
fecf0e4d2a
|
fix two typos in pip module: --extra-index-url, --download-cache
|
2012-11-05 17:38:36 +08:00 |
|
Thomas S Hatch
|
0ec74c8a5c
|
Merge pull request #2443 from petersanchez/develop
Use proper exception when checking for user information at salt-master startup
|
2012-11-04 20:36:30 -08:00 |
|
Thomas S Hatch
|
096fe2cef0
|
Tell the master to only keep the external job cache if it is turned on
|
2012-11-04 21:08:18 -07:00 |
|
Thomas S Hatch
|
5f49a49a67
|
Instruct ext_job_cache to initiate the returner on function calls
|
2012-11-04 21:08:18 -07:00 |
|
Thomas S Hatch
|
f6d7d9546c
|
Add a space to jobs runner between functions
|
2012-11-04 21:08:18 -07:00 |
|
Thomas S Hatch
|
65384a8440
|
brush up returner module to work, tested with the redis returner
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
7424d3379b
|
Add returner module to gather return data from a returner database
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
4b3fc92b5d
|
Add redis get_jid and get)fun returner functions
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
4d886d6583
|
update print statements to be functions
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
c948ba5beb
|
kill stray print statement
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
5b0cf5e3b9
|
fix string to be .format
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
9c9e95c6eb
|
Fix more exception syntax
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
9f4665a00a
|
fix another exception syntax in the pip state
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
dc35881213
|
Found another in the git state
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
0035820c06
|
Fix exception handle in git state
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
b23ac03570
|
Another exception update
|
2012-11-04 21:08:17 -07:00 |
|
Thomas S Hatch
|
b0dee7ab2d
|
Another commit error
|
2012-11-04 21:08:16 -07:00 |
|
Thomas S Hatch
|
0d8ed64963
|
update syntax to exception check
|
2012-11-04 21:08:16 -07:00 |
|
Thomas S Hatch
|
7d91473fe1
|
Add a .format string to pillar_ldap
|
2012-11-04 21:08:16 -07:00 |
|
Thomas S Hatch
|
38e6a6ca79
|
Add mongo future returner
|
2012-11-04 21:08:16 -07:00 |
|
Thomas S Hatch
|
d25fca72ab
|
change the redis returner to be called just redis
|
2012-11-04 21:08:16 -07:00 |
|
Thomas S Hatch
|
d1bcfe73ec
|
Merge pull request #2446 from archtaku/yumpkg5_file
Add ability to install pkg from file (yumpkg5)
|
2012-11-04 19:33:03 -08:00 |
|
Thomas S Hatch
|
3de39388d6
|
Merge pull request #2445 from twinshadow/state-svn
Add the state file for Subversion
|
2012-11-04 19:30:12 -08:00 |
|
Erik Johnson
|
e42b9d27ad
|
Add ability to install pkg from file (yumpkg5)
|
2012-11-04 21:22:07 -06:00 |
|
Anthony Cornehl
|
f943850ca0
|
Final pass for lint
|
2012-11-04 19:03:41 -08:00 |
|
Anthony Cornehl
|
8b19defab3
|
Updated state based on testing
|
2012-11-04 18:44:32 -08:00 |
|
Thomas S Hatch
|
995b068481
|
Merge pull request #2444 from giantlock/develop
virtualization detection fix for freebsd/jail
|
2012-11-04 15:21:41 -08:00 |
|
Anthony Cornehl
|
63d5b50229
|
Stub out new state
|
2012-11-04 14:56:10 -08:00 |
|