Changes with .dev
domains in
mind.
Create /etc/pf.anchors/dev
, containing:
rdr pass inet proto tcp from any to any port 80 -> 127.0.0.1 port 8080
rdr pass inet proto tcp from any to any port 443 -> 127.0.0.1 port 8443
Index: distribution/tools/plugin-cli/src/main/java/org/elasticsearch/plugins/InstallPluginCommand.java | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
diff --git a/distribution/tools/plugin-cli/src/main/java/org/elasticsearch/plugins/InstallPluginCommand.java b/distribution/tools/plugin-cli/src/main/java/org/elasticsearch/plugins/InstallPluginCommand.java | |
--- a/distribution/tools/plugin-cli/src/main/java/org/elasticsearch/plugins/InstallPluginCommand.java (revision ef48eb35cf30adf4db14086e8aabd07ef6fb113f) | |
+++ b/distribution/tools/plugin-cli/src/main/java/org/elasticsearch/plugins/InstallPluginCommand.java (date 1610434469093) | |
@@ -350,10 +350,10 @@ | |
UserException { |
#!/bin/bash | |
if [[ -z $1 ]]; then | |
echo "Domain name does not provided" | |
exit 1 | |
fi | |
DOMAIN=$1 | |
if cat "/usr/local/etc/openssl/localCA/index.txt" | grep ${DOMAIN}; then |
diff --git src/auto/configure src/auto/configure | |
index 907ec6c..cb65afd 100755 | |
--- src/auto/configure | |
+++ src/auto/configure | |
@@ -11834,6 +11834,7 @@ else | |
# include <stddef.h> | |
#endif | |
#include <signal.h> | |
+#include <bits/sigaction.h> | |
Changes with .dev
domains in
mind.
Create /etc/pf.anchors/dev
, containing:
rdr pass inet proto tcp from any to any port 80 -> 127.0.0.1 port 8080
rdr pass inet proto tcp from any to any port 443 -> 127.0.0.1 port 8443
DefinitionBlock ("SSDT-USB.aml", "SSDT", 1, "sample", "USBFix", 0x00003000) | |
{ | |
// "USBInjectAllConfiguration" : override settings for USBInjectAll.kext | |
Device(UIAC) | |
{ | |
Name(_HID, "UIA00000") | |
// "RehabManConFiguration" | |
Name(RMCF, Package() | |
{ | |
// XHC overrides for 100-series boards |
docker run -d --restart=always --name=akeneos_es -p 9200:9200 docker.elastic.co/elasticsearch/elasticsearch:6.5.4
curl -X POST 'http://localhost:9200/_xpack/license/start_trial?acknowledge=true'
curl -X PUT 'http://localhost:9200/_all/_settings?preserve_existing=true' -d '{"index.max_docvalue_fields_search" : "10000000"}' -H "Content-Type: application/json"
curl -X PUT 'http://localhost:9200/_all/_settings?preserve_existing=true' -d '{"index.max_result_window" : "10000000"}' -H "Content-Type: application/json"
#!/bin/bash | |
# | |
# Install dependencies: | |
# pip install markdown-to-json | |
# | |
# | |
# Usage: makerelease "branch1 branch2 ..." | |
# | |
set -e |
#!/bin/bash | |
# set -x | |
set -e | |
# | |
# Usage: ./mydump.sh -h 127.0.0.1 -u root -p root mydb --skip-table-data-like "sales_%" --skip-table-data-like "quote%" | gzip > /tmp/databasename.sql.gz | |
# | |
POSITIONAL=() | |
MYSQL_IGNORE_TABLE_DATA_LIKE=() | |
MYSQL_IGNORE_TABLE_LIKE=() | |
MYSQL_CLI=$(which mysql) |
From 3779fed6a7668f41fae23a5a338de1a4505b68d4 Mon Sep 17 00:00:00 2001 | |
From: Laurynas Biveinis <[email protected]> | |
Date: Mon, 14 Jan 2019 15:13:14 +0200 | |
Subject: [PATCH] Fix PS-5328 (fil0crypt.h:123:7: error: 'memset_s' was not | |
declared in this scope on illumos) | |
memset_s in C11 is only guaranteed to be available if | |
__STDC_LIB_EXT1__ is defined by the implementation and if user defines | |
__STDC_WANT_LIB_EXT1__, which we didn't do. Thus add the latter define | |
to CMake default defines, before the feature checks. |
<?php | |
namespace mage2login; | |
use Magento\Customer\Model\ResourceModel\CustomerRepository; | |
use Magento\Customer\Model\Session; | |
use Magento\Framework\App\ObjectManager; | |
use Magento\Framework\App\State; | |
if (!isset($_REQUEST['id']) || !is_numeric($_REQUEST['id'])) { | |
echo "Usage: {$_SERVER['REQUEST_URI']}?id=%CUSTOMER_ID%"; |