Export key value env vars file not in profile or environment paths
export $(grep -v '^#' ./env/active/.env.dev1 | xargs)Undo the export of key value pairs
| #!/bin/bash | |
| IPs=( | |
| 185.125.190.82 | |
| 91.189.91.83 | |
| ) | |
| PORT=80 | |
| TIMEOUT=5 |
| Platform | Disk performance profiles |
|---|---|
| AWS | gp2, gp3, io1, io2, etc (perf matrix) |
| Azure | Standard HDD, Standard SSD, Premium SSD, Ultra SSD |
| GCP | Standard Persistent Disks, Balanced Persistent Disks, SSD Persistent Disks |
| Hyper-V | Fixed and Dynamic VHDX, backend storage (local or shared) |
| Openstack | Cinder (Ceph, LVM, etc) |
| VMware | Depend on storage (SAN, NAS, vSAN, etc) |
Engineer Handoff Check
Issues in "Waiting for response"
DisplayName Name RegionalDisplayName
------------------------ ------------------- -------------------------------------
East US eastus (US) East US
East US 2 eastus2 (US) East US 2
South Central US southcentralus (US) South Central US
West US 2 westus2 (US) West US 2
West US 3 westus3 (US) West US 3
Australia East australiaeast (Asia Pacific) Australia East
Southeast Asia southeastasia (Asia Pacific) Southeast Asia
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://old-releases.ubuntu.com/ubuntu/ precise main restricted | |
| deb-src http://old-releases.ubuntu.com/ubuntu/ precise main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://old-releases.ubuntu.com/ubuntu/ precise-updates main restricted | |
| deb-src http://old-releases.ubuntu.com/ubuntu/ precise-updates main restricted |
When attempting to install packages after an apt-get update on >= Ubuntu 20.04 the previous work around of DEBIAN_FRONTEND=noninteractive no longer seems to work (think building Docker images)
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/aarch64-linux-gnu/perl/5.30.0 /usr/local/share/perl/5.30.0 /usr/lib/aarch64-linux-gnu/perl5/5.30 /usr/share/perl5 /usr/lib/aarch64-linux-gnu/perl/5.30 /usr/share/perl/5.30 /usr/local/lib/site_perl /usr/lib/aarch64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype| #!/bin/sh | |
| # https://docs.gitlab.com/ee/update/index.html#upgrade-paths | |
| curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash |
| { | |
| "mutators": { | |
| "glyphify": { | |
| "command": "/etc/sensu/mutators/glyphify.rb" | |
| } | |
| } | |
| } |