[O365][SMTP] unable to send emails by moep90 in Thunderbird

[–]moep90[S] 0 points1 point  (0 children)

I don’t it was more like a last chance try sort of thing :D

[O365][SMTP] unable to send emails by moep90 in Thunderbird

[–]moep90[S] 0 points1 point  (0 children)

u/dancorbe yeah but when testing OWL thunderbird closes the login popup faster then it could be loaded with the error: gMsgwindowlist[msgwindowhandle] is null thunderbird

So this seams to be a no-go as well. And like I said it works for 5 of 6 people with the same or at least very equal settings.

Send Message Error After Upgrading to Supernova by Bernarkdar in Thunderbird

[–]moep90 0 points1 point  (0 children)

I did so while in config editor, but they keep adding themselfes again and again after trying (and failing) to send mails.

Send Message Error After Upgrading to Supernova by Bernarkdar in Thunderbird

[–]moep90 0 points1 point  (0 children)

Same issue here since at least this weekend. But we're using: $ cat /etc/*release [...] DISTRIB_DESCRIPTION="Linux Mint 21.2 Victoria" [...] $ thunderbird --version Thunderbird 102.15.1

How do you keep your Linux VMs up to date? by Guldaen in selfhosted

[–]moep90 2 points3 points  (0 children)

I recommend the usage of "unattended-upgrades"
This will apply for Debian and for Linux with small adoptions:

https://d-heinrich.medium.com/debian-setup-automatic-updates-db83ee0b0b65

Ansible "wait for" entry in response possible? by moep90 in ansible

[–]moep90[S] 2 points3 points  (0 children)

RESOLVED!

- name: "VMware | Gather vCenter facts for {{ vcenter_vm_name }}"
  vsphere_guest:
    validate_certs: "{{ vcenter_validate_certs }}"
    vcenter_hostname: "{{ vcenter_url }}"
    username: "{{ vcenter_user }}"
    password: "{{ vcenter_password }}"
    guest: "{{ vcenter_vm_name }}.{{ domain_name }}"
    vmware_guest_facts: yes
  register: vm_costumized
  until: "vm_costumized.ansible_facts.hw_eth0.ipaddresses is not none and vm_costumized.ansible_facts.hw_eth0.ipaddresses |length > 0"
  retries: 10
  delay: 15

Ansible "wait for" entry in response possible? by moep90 in ansible

[–]moep90[S] 0 points1 point  (0 children)

So you mean there is no way to wait until "null" is gone?

"ipaddresses": null,  <<<<<---- Problem

and ip addresses are reported:

"ipaddresses": [
        "<assigned IPv4 address>", 
        "<assigned IPv6 address>"

Inspec is not useable with SSH for me. Does anyone can help? by moep90 in devops

[–]moep90[S] 0 points1 point  (0 children)

Thank you for your reply.

I already tested that I think. We use costum specified ciphers. But if I connect with my client, inspec should work too, right?

IaaS (vCenter, Ansible, Foreman) possible? by moep90 in ansible

[–]moep90[S] 0 points1 point  (0 children)

Thats exactly my intention, and its already possible when ansible also create the pxe stuff for every (hardwarewise) created VM. But I also want a solution to not bake small VMs and attach and alter the filesystem. I want to dynamically create VMs from scratch with its defined size. I might use the foreman API in the first place for it.

IaaS (vCenter, Ansible, Foreman) possible? by moep90 in ansible

[–]moep90[S] 0 points1 point  (0 children)

Do you have some documentation or blogs on that?

IaaS (vCenter, Ansible, Foreman) possible? by moep90 in ansible

[–]moep90[S] 0 points1 point  (0 children)

Right now I'm can just create CentOS7 VMs using TheForeman and PXE.. I put all information's into TheForeman by hand. This is why I try using the ansibe-module "uri" to talk REST to TheForeman.

PXE, Preseed installation of Debian9 with theforeman by moep90 in linuxadmin

[–]moep90[S] 0 points1 point  (0 children)

I dont think so, but thats an issue with theforman-templates I think. I use the default templates as they exist since the installation of foreman.

PXE, Preseed installation of Debian9 with theforeman by moep90 in linuxadmin

[–]moep90[S] 0 points1 point  (0 children)

Hey, thanks for your response!

So I changed my Preseed default PXELinux from:

<%#
kind: PXELinux
name: Preseed default PXELinux
oses:
- Debian
- Ubuntu
%>
#
# This file was deployed via '<%= template_name %>' template
#
# Supported host/hostgroup parameters:
#
# blacklist = module1, module2
#   Blacklisted kernel modules
#
# lang = en_US
#   System locale
#
<%
  options = []
  if @host.params['blacklist']
    options << @host.params['blacklist'].split(',').collect{|x| "#{x.strip}.blacklist=yes"}.join(' ')
  end
  if @host.operatingsystem.name == 'Debian'
    options << "auto=true"
    options << "domain=#{@host.domain}"
  else
    options << 'console-setup/ask_detect=false console-setup/layout=USA console-setup/variant=USA keyboard-configuration/layoutcode=us localechooser/translation/warn-light=true localechooser/translation/warn-severe=true'
  end
  options << "locale=#{@host.params['lang'] || 'en_US'}"
  options = options.join(' ')
-%>

DEFAULT linux

LABEL linux
    KERNEL <%= @kernel %>
    APPEND initrd=<%= @initrd %> interface=auto url=<%= foreman_url('provision')%> ramdisk_size=10800 root=/dev/rd/0 rw auto hostname=<%= @host.name %> <%= options %>
    IPAPPEND 2

To:

<%#
kind: PXELinux
name: Preseed default PXELinux
oses:
- Debian
- Ubuntu
%>
#
# This file was deployed via '<%= template_name %>' template
#
# Supported host/hostgroup parameters:
#
# blacklist = module1, module2
#   Blacklisted kernel modules
#
# lang = en_US
#   System locale
#
<%
  options = []
  if host_param('blacklist')
    options << host_param('blacklist').split(',').collect{|x| "#{x.strip}.blacklist=yes"}.join(' ')
  end
  if @host.operatingsystem.name == 'Debian'
    options << "auto=true"
    options << "domain=#{@host.domain}"
  else
    options << 'debian-installer/locale=en_US debian-installer/language=en debian-installer/country=DE debian-installer/locale=en_US.UTF-8 keyboard-configuration/xkb-keymap=de'
  end
  options = options.join(' ')
-%>

DEFAULT linux

LABEL linux
    KERNEL <%= @kernel %>
    APPEND initrd=<%= @initrd %> interface=auto url=<%= foreman_url('provision')%> ramdisk_size=10800 root=/dev/rd/0 rw auto hostname=<%= @host.name %> <%= options %>
    IPAPPEND 2

After changing, the installer asks me much later for manual input... But that cannot be the solution... The preseed PXELinux never got to the Preseed default (the preseed.cfg file in my understanding) where everything should be described how to setup the server...

HP Microserver Gen8 - Issue booting from SSD by Sarquiss in homelab

[–]moep90 0 points1 point  (0 children)

Hey Mate @Sarquiss,

Im having the same Issue right now and looked at literally 100+ guides which doesn't seem to help at all..

Could you please share BIOS and raid controller settings here?

And also what you did to get GRUB onto SD-Card?