Following this: http://www.pyimagesearch.com/2016/12/19/install-opencv-3-on-macos-with-homebrew-the-easy-way/
Then tried to verify... with a fail.
$> python
>>> import cv2
Traceback (most recent call last):
# Mostly copied/scripted from | |
# https://www.modmypi.com/blog/tutorial-how-to-give-your-raspberry-pi-a-static-ip-address | |
# We're assuming you're on ethernet when this is run. | |
# Also worth trying: | |
# route -n | awk '$4 == "UG" {print $2}' | |
# Get basic network information | |
- name: Get the gateway | |
shell: $(/sbin/route -n | awk 'FNR == 3 {print $2}') |
{:timestamp=>"2016-10-28T17:21:44.445000+0100", :message=>"Pipeline aborted due to error", :exception=>java.lang.NullPointerException, :backtrace=>["org.logstash.netty.PrivateKeyConverter.generatePkcs8(org/logstash/netty/PrivateKeyConverter.java:43)", "org.logstash.netty.PrivateKeyConverter.convert(org/logstash/netty/PrivateKeyConverter.java:39)", "java.lang.reflect.Method.invoke(java/lang/reflect/Method.java:498)", "RUBY.create_server(/usr/share/logstash/vendor/bundle/jruby/1.9/gems/logstash-input-beats-3.1.0.beta4-java/lib/logstash/inputs/beats.rb:139)", "RUBY.register(/usr/share/logstash/vendor/bundle/jruby/1.9/gems/logstash-input-beats-3.1.0.beta4-java/lib/logstash/inputs/beats.rb:132)", "RUBY.start_inputs(/usr/share/logstash/logstash-core/lib/logstash/pipeline.rb:311)", "org.jruby.RubyArray.each(org/jruby/RubyArray.java:1613)", "RUBY.start_inputs(/usr/share/logstash/logstash-core/lib/logstash/pipeline.rb:310)", "RUBY.start_workers(/usr/share/logstash/logstash-core/lib/logstash/pipeline.rb:187)", "RUB |
- name: Fetch down the key to this control box | |
fetch: | |
src: "{{ filebeat_key_path }}/{{ filebeat_key_name }}" | |
dest: "{{ playbook_dir }}/roles/filebeat/files/{{ filebeat_key_name }}" | |
flat: yes | |
tags: logstash_fetch |
- name: Install rsync | |
yum: name=rsync state=latest | |
tags: filebeat_cert | |
- name: Sync the cert to the logstash box | |
synchronize: | |
src: "{{ cert_path }}/{{ filebeat_cert_name }}" | |
dest: "{{ cert_path }}/{{ filebeat_cert_name }}" | |
mode: pull |
Module Variables ("vars"): | |
-------------------------------- | |
{{ vars | to_nice_json }} | |
Environment Variables ("environment"): | |
-------------------------------- | |
{{ environment | to_nice_json }} | |
GROUP NAMES Variables ("group_names"): | |
-------------------------------- |
Following this: http://www.pyimagesearch.com/2016/12/19/install-opencv-3-on-macos-with-homebrew-the-easy-way/
Then tried to verify... with a fail.
$> python
>>> import cv2
Traceback (most recent call last):
// Inspect the classpath - used during debugging | |
//ClassLoader cl = ClassLoader.getSystemClassLoader(); | |
//URL[] urls = ((URLClassLoader) cl).getURLs(); | |
//for (URL url : urls) { | |
// System.out.println(url.getFile()); | |
//} |
Jicofo 2017-05-25 20:07:40.516 SEVERE: [52] org.jitsi.jicofo.ChannelAllocator.log() Failed to allocate channels using bridge: jitsi-videobridge.jitsi.mydomain.net | |
net.java.sip.communicator.service.protocol.OperationFailedException: Failed to allocate colibri channels: <iq id="85Wk4-61" to="[email protected]/focus29813371057323" from="jitsi-videobridge.jitsi.mydomain.net" type="error"><conference xmlns='http://jitsi.org/protocol/colibri' name='helloworld'><content name='audio'><channel endpoint='87f60587' initiator='true' channel-bundle-id='87f60587' last-n='-1'><payload-type name='opus' clockrate='48000' id='111' channels='2'><parameter value='10' name='minptime'/><parameter value='1' name='useinbandfec'/></payload-type><payload-type id='103' name='ISAC' clockrate='16000'/><payload-type id='104' name='ISAC' clockrate='32000'/><payload-type id='126' name='telephone-event' clockrate='8000'/><rtp-hdrext id='1' uri='urn:ietf:params:rtp-hdrext:ssrc-audio-level'/></channel></content><content name |
# Simple playbook to understand and illustrate how nicely ansible handles registering output as part of a `with_items` loop. | |
# To call: | |
# $> ansible-playbook playbook.yml | |
--- | |
- hosts: localhost | |
tasks: | |
- stat: | |
path: "/tmp" |