This file contains hidden or 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
#!/bin/bash | |
die () { | |
if [ -z "$1" ] | |
then | |
echo "something went very wrong..." | |
else | |
echo "NOK:${1}" | |
fi | |
exit 1 | |
} |
This file contains hidden or 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
#!/bin/bash | |
FLAGFILE=/tmp/go-ahead.txt | |
echo 1 >${FLAGFILE} | |
while [ 1 ] | |
do | |
FECHORA="$(date +'%Y-%m-%d')" | |
LOG="/var/log/${FECHORA}.netstat.txt" | |
INC="/var/log/${FECHORA}.netstat-inc.txt" | |
OUT="/var/log/${FECHORA}.netstat-out.txt" | |
LOC="/var/log/${FECHORA}.netstat-loc.txt" |
This file contains hidden or 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
#!/bin/bash | |
usage () { | |
echo "$0 <incoming-netstat-log> <outgoing-netstat-log> <local-netstat-log> [machine-tag]" | |
echo "example:" | |
echo "$0 *.netstat-inc.txt *.netstat-out.txt *.netstat-loc.txt" | |
echo "$0 *.netstat-inc.txt *.netstat-out.txt *.netstat-loc.txt machine-name-or-something " | |
exit 0 | |
} |
This file contains hidden or 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
#!/bin/bash | |
HOMO="\([0-9]\.\|[1]\{,1\}[0-9]\{2\}\.\|2[0-4][0-9]\.\|25[0-5]\.\)\{3\}\([0-9]\|[1]\{,1\}[0-9]\{2\}\|2[0-4][0-9]\|25[0-5]\)" | |
LAN10="10\(\.[0-9]\|\.[1]\{,1\}[0-9]\{2\}\|\.2[0-4][0-9]\|\.25[0-5]\)\{3\}" | |
LAN172="172\.\(1[6-9]\|2[0-9]\|3[01]\)\.\([0-9]\.\|[1]\{,1\}[0-9]\{2\}\.\|2[0-4][0-9]\.\|25[0-5]\.\)\([0-9]\|[1]\{,1\}[0-9]\{2\}\|2[0-4][0-9]\|25[0-5]\)" | |
LAN192168="192.168\(\.[0-9]\|\.[1]\{,1\}[0-9]\{2\}\|\.2[0-4][0-9]\|\.25[0-5]\)\{2\}" | |
LANSELF="127.0.0.1" | |
LANWEIRD="169.254.169.254" | |
case ${1} in | |
"-i") |
This file contains hidden or 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
TLF (LFS162x) (Prof. Gourav Shah) | |
Introduction to DevOps and Site Reliability Engineering | |
DevOps = Developer & Operations (Areas) | |
SRE = Site Reliability Engineer | |
--- | |
Needs: Bridge Gap between ( Faster Dev vs Waterfall practices ) | |
DevOps via: | |
( Modern principles | |
Practices | |
Automation tools ) --PATH--> Ops into Agile Area => Faster software delivery. |
This file contains hidden or 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
https://developers.facebook.com/docs/whatsapp/on-premises/overview | |
BSP: Business Solution Provider | |
WhatsApp Business Platform On-Premises API | |
Requirements: | |
- Display name: | |
1. how to set it up: https://www.facebook.com/business/help/338047025165344/ | |
2. the formatting guidelines: https://www.facebook.com/business/help/757569725593362 | |
3. updating it: https://www.facebook.com/business/help/378834799515077 |
This file contains hidden or 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
Append except:type:ethernet at the end of the line unmanaged-devices...etc | |
systemctl restart NetworkManager |
This file contains hidden or 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
curl --location --insecure -u xxx:yyyy --silent --connect-timeout 10 X GET "https://10.1.1.1/redfish/v1/Systems/1/" | jq '.["Oem"]["Hpe"]["AggregateHealthStatus"]' | |
>> | |
{ | |
"AgentlessManagementService": "Ready", | |
"BiosOrHardwareHealth": { | |
"Status": { | |
"Health": "OK" | |
} | |
}, | |
"FanRedundancy": "Redundant", |
This file contains hidden or 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
zdump -v America/Mexico_City | grep $(date +"%Y") | |
America/Mexico_City Sun Apr 4 07:59:59 2021 UT = Sun Apr 4 01:59:59 2021 CST isdst=0 gmtoff=-21600 | |
America/Mexico_City Sun Apr 4 08:00:00 2021 UT = Sun Apr 4 03:00:00 2021 CDT isdst=1 gmtoff=-18000 | |
America/Mexico_City Sun Oct 31 06:59:59 2021 UT = Sun Oct 31 01:59:59 2021 CDT isdst=1 gmtoff=-18000 | |
America/Mexico_City Sun Oct 31 07:00:00 2021 UT = Sun Oct 31 01:00:00 2021 CST isdst=0 gmtoff=-21600 | |
------------------- | |
To remove DST settings you have to know your time shift and reverse it, so for example | |
for America/Mexico_City being it: -6 | |
``` | |
# rm -f /etc/localtime && ln -s /usr/share/zoneinfo/Etc/GMT+6 /etc/localtime |
This file contains hidden or 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
Something lik: | |
Traceback (most recent call last): | |
File "/sbin/subscription-manager", line 9, in <module> | |
load_entry_point('subscription-manager==1.24.26', 'console_scripts', 'subscription-manager')() | |
File "/usr/lib64/python2.7/site-packages/subscription_manager/scripts/subscription_manager.py", line 86, in main | |
return managercli.ManagerCLI().main() | |
File "/usr/lib64/python2.7/site-packages/subscription_manager/managercli.py", line 2989, in main | |
ret = CLI.main(self) | |
File "/usr/lib64/python2.7/site-packages/subscription_manager/cli.py", line 183, in main | |
return cmd.main() |