@stacksofplates is the libvirt provider for Vagrant working properly? I thought it was in development and not working well.

Posts
-
RE: Ansible Testing with Molecule
-
RE: ombutel.com
@black3dynamite said in ombutel.com:
What Linux distro is ombutel using?
FreePBX is using CentOS.
FusionPBX is using Debian.They use CentOS 7.
-
RE: What Are You Doing Right Now
@scottalanmiller Hopefully soon =), trying to learn a lot more about it.
-
RE: G Suite Not Working
@scottalanmiller said in G Suite Not Working:
@romo said in G Suite Not Working:
@scottalanmiller Any specific sign-in message that appears? Or is it just not loading anything after login.
Sign in works fine. Email LOOKS like it is fine, but the emails never go out. Hangouts just has the spinner go for give minutes then says that the backend is not responding. Meet says that I can only join, not start, a meeting.
It is a setting, if others have it working it could be the setting is enabled for specific groups in the org.
In spanish but there is the setting
-
RE: G Suite Not Working
@scottalanmiller said in G Suite Not Working:
@romo said in G Suite Not Working:
@scottalanmiller Any specific sign-in message that appears? Or is it just not loading anything after login.
Sign in works fine. Email LOOKS like it is fine, but the emails never go out. Hangouts just has the spinner go for give minutes then says that the backend is not responding. Meet says that I can only join, not start, a meeting.
That meet error is a setting in the admin panel if I recall correctly, let me check out in our admin.
-
RE: G Suite Not Working
@scottalanmiller Any specific sign-in message that appears? Or is it just not loading anything after login.
-
RE: G Suite Not Working
We use G Suite as well no problems like that have appeared.
-
RE: Sudo without Password?
When using configuration management tools it does make things a lot easier to work with if you atleast have one user with passwordless sudo. You really don't need to log to the servers anymore, you only need to properly secure your ssh keys.
-
RE: What Are You Doing Right Now
How they felt it in Xochimilco https://twitter.com/nimrod_arkitek/status/910226088940462080
-
RE: What Are You Doing Right Now
@coliver said in What Are You Doing Right Now:
Is this the second one to hit Mexico in a month or two?
Yes, last one was 8.2 with epicenter in Chiapas, not so much damage caused even though it did kill 96 people.
-
RE: What Are You Doing Right Now
Sadly big earthquake just hit Mexico, several buildings in Mexico City have suffered severe damage or have collapsed =( .
https://twitter.com/DevinSenaUI/status/910225962062766085
https://twitter.com/noticias4vision/status/910226056212295680 -
RE: Ansible Hardening Role
@stacksofplates Currently reading Jangs RHCSA book, it says drop zone defaults to allowing outgoing connection and drop incoming.
So this playbook is just allowing ssh outgoing and dropping all ssh incoming, right?
-
RE: Ansible Hardening Role
@stacksofplates Why allow ssh in the drop zone? Is this blocking it?
- name: open SSH for drop zone firewalld: zone: drop service: "{{ item }}" permanent: true state: enabled immediate: true with_items: "{{ firewalld_services }}" notify: set default zone tags: - firewalld - hardening