This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"strings" | |
"github.com/mattn/go-runewidth" | |
"github.com/muesli/termenv" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# vim: autoindent tabstop=4 shiftwidth=4 expandtab softtabstop=4 filetype=python | |
# This file is part of Supermicro IPMI certificate updater. | |
# Supermicro IPMI certificate updater is free software: you can | |
# redistribute it and/or modify it under the terms of the GNU General Public | |
# License as published by the Free Software Foundation, version 2. | |
# | |
# This program is distributed in the hope that it will be useful, but WITHOUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019/08/02 16:54:39 [INFO] Packer version: 1.4.2 | |
2019/08/02 16:54:39 Packer Target OS/Arch: linux amd64 | |
2019/08/02 16:54:39 Built with Go Version: go1.12.6 | |
2019/08/02 16:54:39 Detected home directory from env var: /home/not-a-root-user | |
2019/08/02 16:54:39 Using internal plugin for amazon-ebs | |
2019/08/02 16:54:39 Using internal plugin for openstack | |
2019/08/02 16:54:39 Using internal plugin for oracle-oci | |
2019/08/02 16:54:39 Using internal plugin for parallels-iso | |
2019/08/02 16:54:39 Using internal plugin for virtualbox-iso | |
2019/08/02 16:54:39 Using internal plugin for yandex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Lines": [ | |
{ | |
"Words": [ | |
{ | |
"WordText": "DAY", | |
"Left": 20, | |
"Top": 103, | |
"Height": 11, | |
"Width": 29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ansible-playbook -i localhost, ./demo-facts-lifetime.yml | |
- hosts: localhost | |
connection: local | |
tasks: | |
- name: Facts gathereed OK | |
debug: | |
var: ansible_date_time.epoch | |
- name: Sleep for a few seconds | |
command: sleep 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ansible-playbook -i localhost, filtering-by-group_by.yml | |
- name: Gather facts and partition hosts | |
hosts: '!__partitioned' | |
become: false | |
connection: local | |
tasks: | |
- group_by: | |
key: __skipme | |
- group_by: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@port-db-dv3-01 ~]# /usr/sbin/subscription-manager status | |
Traceback (most recent call last): | |
File "/usr/sbin/subscription-manager", line 58, in ? | |
from subscription_manager.injectioninit import init_dep_injection | |
File "/usr/share/rhsm/subscription_manager/injectioninit.py", line 17, in ? | |
from subscription_manager.cache import ProductStatusCache, EntitlementStatusCache, \ | |
File "/usr/share/rhsm/subscription_manager/cache.py", line 33, in ? | |
from subscription_manager.jsonwrapper import PoolWrapper | |
File "/usr/share/rhsm/subscription_manager/jsonwrapper.py", line 18, in ? | |
from subscription_manager.utils import is_true_value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.array | |
*.inline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: localhost | |
connection: local | |
become: true | |
gather_facts: false | |
tasks: | |
- block: | |
- yum: | |
name: foobar | |
state: installed |
NewerOlder