lssyscfg -r sys -F name:type_model:serial_numlssyscfg -m -r lpar -F name| diff --git a/install/nginxproxymanager-install.sh b/install/nginxproxymanager-install.sh | |
| index 124d1630..7a2a681c 100644 | |
| --- a/install/nginxproxymanager-install.sh | |
| +++ b/install/nginxproxymanager-install.sh | |
| @@ -30,11 +30,12 @@ $STD apt-get install -y \ | |
| python3-dev \ | |
| python3-pip \ | |
| python3-venv \ | |
| - python3-cffi \ | |
| - python3-certbot \ |
| @echo off | |
| echo Dell iDRAC 6 SSL Key upload system | |
| echo. | |
| echo ===[credentials]=== | |
| set default_hostname=your.idrac.address | |
| rem Host Section | |
| set /p host="Host (Default. %default_hostname%): " | |
| IF NOT DEFINED host ( |
| package main | |
| // This is a basic example of running an nsqd instance embedded. It creates | |
| // and runs an nsqd with all of the default options, and then produces | |
| // and consumes a single message. You are probably better off running a | |
| // standalone instance, but embedding it can simplify deployment and is | |
| // useful in testing. | |
| // See https://github.com/nsqio/nsq/blob/master/nsqd/options.go and | |
| // https://github.com/nsqio/nsq/blob/master/apps/nsqd/nsqd.go for |
| #!/bin/sh | |
| ####################################################### | |
| # | |
| # Edits the proxmox Subscription file to make it | |
| # think that it has a Subscription. | |
| # | |
| # Will disable the annoying login message about | |
| # missing subscription. | |
| # |
| #!/usr/bin/env bash | |
| set -eu | |
| declare -A chains=( | |
| [filter]=INPUT:FORWARD:OUTPUT | |
| [raw]=PREROUTING:OUTPUT | |
| [mangle]=PREROUTING:INPUT:FORWARD:OUTPUT:POSTROUTING | |
| [security]=INPUT:FORWARD:OUTPUT | |
| [nat]=PREROUTING:INPUT:OUTPUT:POSTROUTING | |
| ) | |
| for table in "${!chains[@]}"; do |
Written using information from my notes & http://www.obsolyte.com/sunFAQ/faq_nvram.html.
Always 01.
ok 1 0 mkp
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: sensu-agent | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start sensu-agent | |
| # Description: Enable the Sensu Agent service | |
| ### END INIT INFO |
| #!/bin/bash | |
| TOKEN="YOUR_TOKEN_HERE" # The API v2 OAuth token | |
| ACCOUNT_ID="YOUR_ACCOUNT_ID_HERE" # Replace with your account ID | |
| ZONE_ID="example.com" # The zone ID is the name of the zone (or domain) | |
| RECORD_ID="42424242" # Replace with the Record ID | |
| IP=`curl -s -4 v4.ifconfig.co` # or provide your own value | |
| curl -H "Authorization: Bearer $TOKEN" \ | |
| -H "Content-Type: application/json" \ | |
| -H "Accept: application/json" \ | |
| -X "PATCH" \ |
| # golang.org/x/sys/unix | |
| ../go/pkg/mod/golang.org/x/[email protected]/unix/dirent.go:16:5: error: reference to undefined name 'isBigEndian' | |
| 16 | if isBigEndian { | |
| | ^ | |
| ../go/pkg/mod/golang.org/x/[email protected]/unix/dirent.go:81:41: error: use of undefined type 'Dirent' | |
| 81 | const namoff = uint64(unsafe.Offsetof(Dirent{}.Name)) | |
| | ^ | |
| ../go/pkg/mod/golang.org/x/[email protected]/unix/fdset.go:10:12: error: use of undefined type 'FdSet' | |
| 10 | func (fds *FdSet) Set(fd int) { | |
| | ^ |