Commit Graph

1249 Commits (d0f4358730ecfcd846c882b102ce411529d001f5)
 

Author SHA1 Message Date
Michael DeHaan d0f4358730 Port the copy module over to the new "common module" logic. 12 years ago
Michael DeHaan d76c8c9c85 Various cleanup around runner's constructor and how daisy chaining is invoked. 12 years ago
Michael DeHaan 1682dd06c0 Avoid duplicate call to fetch inventory variables 12 years ago
Michael DeHaan 54c9c1e25c Some streamlining of first_available_file code 12 years ago
Michael DeHaan 2d06ee4c0d Fix some subtle things that were keeping 'hostvars' from being usable in templates. 12 years ago
Michael DeHaan 2b6d8a8be5 Fix some issues with the setup cache 12 years ago
Michael DeHaan dde11baa56 Remove YAML inventory tests since this is now deprecated. 12 years ago
Michael DeHaan 5a67a556cd Script to migrate YAML users to the INI format, so we can deprecate YAML inventory (which we are now doing). 12 years ago
Michael DeHaan b15dde6b9f update changelog 12 years ago
Michael DeHaan dcca08b27b Don't let with_items erase 'hostvars' 12 years ago
Michael DeHaan b574c70006 host and group vars should update the setup cache 12 years ago
Michael DeHaan ba3466af95 The following paths are now implict and optional in vars_files:
./group_vars/groupname.yml (for all groups the host is in)
./host_vars/hostname.yml (for the hostname given in the inventory)

This requires an actual inventory file, not script and the paths are relative
to the directory of the inventory file.
12 years ago
Michael DeHaan db1a4d8fac Make 'assemble' use the new daisychain logic 12 years ago
Michael DeHaan 6fb74ae2f9 preserve 'changed' attributes in daisychain logic 12 years ago
Michael DeHaan d72c0c8898 replace module daisy-chaining logic 12 years ago
Michael DeHaan a33713234c Merge pull request #645 from sfromm/issue643
Skip get_ipv6_facts if socket.has_ipv6 is false
12 years ago
Stephen Fromm 2a0dfba838 Skip get_ipv6_facts if socket.has_ipv6 is false 12 years ago
Michael DeHaan b0eedfbf92 Merge pull request #639 from goozbach/issue-627
improved output in with_items fixes: #627
12 years ago
Michael DeHaan 85b9fa580c Merge pull request #644 from bradobro/common_fix
AnsibleModule now correctly reads param values with '"'.
12 years ago
bradobro a4a09fec82 AnsibleModule (in module_common.py) now correctly reads param values containing '='. 12 years ago
Michael DeHaan 290e1af339 Merge pull request #640 from sfromm/fancy
Sanitize possible password argument when logging invocation
12 years ago
Stephen Fromm 8195375412 Sanitize possible password argument when logging invocation; taken from user module 12 years ago
Derek Carter 34e2584220 improved output in with_items fixes: #627 12 years ago
Michael DeHaan baf07659f7 Merge pull request #638 from sfromm/issue604
Fix for issue 604
12 years ago
Stephen Fromm fd059a3df2 Fix for issue 604
Do not switch to master branch in pull()
Add --track to git checkout, when checking out a remote branch to track.
12 years ago
Michael DeHaan 70ef8e9ebb Merge pull request #637 from goozbach/git-mkdir
git mkdir causes problems with older git (can't c/o to existing directory)
12 years ago
Derek Carter f0f8eb3445 git mkdir causes problems with older git (can't checkout to existing directory) 12 years ago
Michael DeHaan dba87fce91 Merge pull request #636 from preyk-work/devel
fixed debian changelog format
12 years ago
K. Preyk b0b7484390 fixed debian changelog format 12 years ago
Michael DeHaan 6e84374c2a Make hostvars work post refactoring 12 years ago
Michael DeHaan 31b6c1c28e Merge pull request #630 from cocoy/ssh-ubuntu
Suppress Ubuntu ssh -tt getting ioctl error.
12 years ago
Michael DeHaan b114a6075f Merge pull request #631 from sfromm/facts
Update setup module for facts derived from classes - take 2
12 years ago
Michael DeHaan d69e70db01 By defining a main function here, and including it ahead of the boilerplate insertion symbol, tracebacks are
now accurate with respect to the main function, but may include lines not in the original file.  A lot better
than before, where they were offset.
12 years ago
Stephen Fromm 0efc0bec89 Update LinuxNetwork to not use fcntl and ioctls
get_interfaces() updated to read /proc/net/dev.  This means it no
longer provides only interfaces that are up.

get_iface_hwaddr() updated to read from /sys/class/net/<iface>/address.

Added get_interface_facts() to pull in mac address and interface mtu.
Can be used later for additional interface-facts.

Added get_ipv6_facts(), which reads from /proc/net/if_inet6.

get_network_facts() renamed to get_ipv4_facts().  It still calls
ifconfig to determine ipv4 facts.
12 years ago
Stephen Fromm 162b78ea5c Check if CPU is QEMU via different mechanism
The processor fact doesn't exist in LinuxVirtual.  Read /proc/cpuinfo
and check if it is QEMU.
12 years ago
Stephen Fromm e3dd25b1b2 Add back erroneously deleted get_file_content() 12 years ago
Stephen Fromm 97c64f3632 Adjustments to behavior of Facts and subclass behavior
The Facts class and subclasses no longer take a dict argument for
instantiation.  populate() now returns self.facts.
Other changes:
- Facts.__init__() takes over most of the work from populate() so that
  subclasses can benefit from its knowledge.
- Drop setting unknown facts to 'NA' in __init__() in various
  subclasses.
- Check for presence of facts in get_virtual_facts()
- Update ansible_facts() to use facts.update(<classname>().populate())
12 years ago
Stephen Fromm ae1b2394ac Update setup module for facts derived from classes
This changes and organizes facts into a base class Facts and several
sub classes that implement the necessary functionality.  The classes
are:
- Facts: base class.  Implements basic facts that should be common to a
  number of platforms.  It is also where SSH keys and SELinux facts are
  set.
- Hardware: A subclass of Facts that should be further
  subclassed per platform for CPU, memory, and related facts.
  - LinuxHardware: subclass of Hardware for Linux platforms
  - SunOSHardware: subclass of Hardware for SunOS platforms
  - FreeBSDHardware: subclass of Hardware for FreeBSD
- Network: A subclass of Facts that that should be further
  subclassed per platform for IP, both IPv4 and IPv6, information.
  - LinuxNetwork: Currently only implementation for determining network
    facts.
- Virtual: A subclass of Facts that that should be further
  subclassed per platform to determine virtual environment facts.
  - LinuxVirtual: Currently only implementation for determining virtual
    facts.

If facts are needed for additional platforms, one of the above classes
(eg Network) can be further subclassed and implement the necessary
functionality.

In addition, it fixes get_network_facts() to work on Fedora17.  That
broke due to changes to ifconfig output.
12 years ago
Rodney Quillo 5f068913ee Suppress Ubuntu ssh -tt error ioctl error. 12 years ago
Michael DeHaan a94ec130d2 Common module code upgrades 12 years ago
Michael DeHaan 9006d4557d Added code to allow insertion of boilerplate into modules to make them able to share lots of code, the result
should be a huge reduction of total ansible source, at a slight cost of difficulty in original module development.

We need to apply this now to all modules, but may need to have some exemptions to things like command, which should
subclass this module.
12 years ago
Michael DeHaan ca21423c71 Merge pull request #628 from pas256/devel
Pass through error message when repo not found
12 years ago
Peter Sankauskas 5e35cd6466 Pass through error message when repo not found 12 years ago
Michael DeHaan f1148fc26d Merge pull request #625 from jkleint/devel
Service module outputting extra data
12 years ago
John Kleint ae665c15b3 Service module outputting extra data.
The service module was printing stuff to stderr, returning two
JSON dicts, not using consistent 'failed' values, had dead code
and unused variables.  Added detection for the case when service
status returns 'xxx is dead and pid file exists' and made the
code a bit easier to read.
12 years ago
Michael DeHaan 2a281f69c2 Merge pull request #621 from pas256/patch-2
Adding missing colon... can't believe I missed that... sorry
12 years ago
Peter Sankauskas 4b66d98332 Adding missing colon... can't believe I missed that... sorry 12 years ago
Michael DeHaan b38f8bfa80 Merge pull request #620 from pas256/patch-1
Conditional Imports should only import the first vars_file found in list
12 years ago
Peter Sankauskas 413fb15e0a Conditional Imports should only import the first file in the list, not all of them. This change stops looping through the vars_files list as soon as a file is found. 12 years ago
Michael DeHaan 4e74ab4856 Merge pull request #619 from skvidal/devel
when using -i"hostname," on the cli - don't complain about the host name...
12 years ago