Настраиваем подключение к впн Устанавливайте только Stable версии приложений!
Подробнее про клиенты и настройку можно почитать по этой ссылке
- Скачать и установить приложение на смартфон.
Step | Init deploy step | Pre deploy step | Deploy | Total time | Diff | |
---|---|---|---|---|---|---|
Without preheat | 0 | 0 | 11m 21s | 11m 21s | 0 | |
With preheat | 8 seconds | 58 seconds | 25 seconds | 1m 31s | -9m 50s |
Настраиваем подключение к впн Устанавливайте только Stable версии приложений!
Подробнее про клиенты и настройку можно почитать по этой ссылке
#!/usr/bin/env bash | |
set -eo pipefail | |
# Description: Test connection to AWS S3 bucket using AWS CLI from bash script. | |
# Prerequisites: | |
# - Install jq https://stedolan.github.io/jq/download/ | |
# - Install AWS CLI https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html | |
# Author: Kirill https://Kazakov.xyz |
# Preferred editor for local and remote sessions | |
if [[ -n $SSH_CONNECTION ]]; then | |
export EDITOR='vim' | |
else | |
export EDITOR='vim' | |
fi | |
export ZSH_AUTOSUGGEST_STRATEGY=(history completion) | |
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" | |
export FPATH=/opt/linuxbrew/.linuxbrew/share/zsh/site-functions:$FPATH |
/* | |
To use this synthetic, set the following Secure credentials: | |
NEW_RELIC_INSIGHTS_API_KEY - Your api key from the account settings. | |
NEW_RELIC_ACCOUNT_ID - Your account ID, also found in the account settings. | |
CERTS_TO_MONITOR - A list of hosts to check via https, separated by a comma and a space, for example: | |
host.example.com, foo.example.com | |
Create a new Synthetic monitor, copy the entire contents of this script to the monitor. | |
Set the monitor to run once a day from a single location. |
# This role has a trust relationship which allows | |
# to assume the role of ec2 | |
resource "aws_iam_role" "ecs" { | |
name = "${var.appName}_ecs_${var.environ}" | |
assume_role_policy = <<EOF | |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": "sts:AssumeRole", |
#!/bin/bash | |
invoke-rc.d salt-minion stop && \ | |
rm -rf /etc/salt/pki/* && \ | |
invoke-rc.d salt-minion start | |
printf "\nminion %s restarted\n" $(cat /etc/salt/minion_id) |
#| weight | total score | correct (+ or -) | |
1 6 6 | + | |
2 3 9 | - | |
3 3 12 | | |
4 3 15 | | |
5 6 21 | | |
6 6 27 | | |
7 3 30 | | |
8 3 33 | | |
9 6 39 | |
<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
DO NOT EDIT! --> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p> | |
<DT><H3 ADD_DATE="1616427741" LAST_MODIFIED="1617895617" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks bar</H3> | |
<DT><H3 ADD_DATE="1616428159" LAST_MODIFIED="1616428159">CKA special</H3> |
#!/usr/bin/env bash | |
echo "Hello, today is $(date)" |