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
| set laststatus=2 | |
| set number | |
| set wrap | |
| set linebreak | |
| set expandtab | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| set clipboard=unnamedplus | |
| execute pathogen#infect() | |
| filetype plugin indent on |
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
| apt-get update && apt-get -y upgrade | |
| # useradd jenkins | |
| add-apt-repository universe && sudo apt install openjdk-8-jre-headless -y | |
| # https://www.microsoft.com/net/download/linux-package-manager/ubuntu18-04/sdk-current | |
| wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb | |
| dpkg -i packages-microsoft-prod.deb | |
| apt-get install apt-transport-https -y | |
| apt-get update && apt-get install dotnet-sdk-2.1 -y |
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
| Microsoft.AAD | |
| Microsoft.ADHybridHealthService | |
| Microsoft.Advisor | |
| Microsoft.AlertsManagement | |
| Microsoft.AnalysisServices | |
| Microsoft.ApiManagement | |
| Microsoft.Authorization | |
| Microsoft.Automation | |
| Microsoft.AzureActiveDirectory | |
| Microsoft.Compute |
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 | |
| echo "$PREFIX-data-rg" | |
| PROBING="Server=tcp:$DB_SERVERNAME.database.windows.net,1433;Persist Security Info=False;User ID=$DB_ADMIN_LOGIN;Password=$DB_PASSWORD;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" | |
| PROVISION="Server=tcp:$DB_SERVERNAME.database.windows.net,1433;Database=TenantProvision;Persist Security Info=False;User ID=$DB_ADMIN_LOGIN;Password=$DB_PASSWORD;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" | |
| TENANT="Server=tcp:$DB_SERVERNAME.database.windows.net,1433;Database={0};Persist Security Info=False;User ID=$DB_ADMIN_LOGIN;Password=$DB_PASSWORD;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" | |
| CONFIGURATION_TENANT="Server=tcp:$DB_SERVERNAME.database.windows.net,1433;Database={0};Persist Security Info=False;User ID=$DB_ADMIN_LOGIN;Password=$DB_PASSWORD;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout= |
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/sh | |
| if [ ! -f /tmp/installed ]; then | |
| echo "\nturning off swap\n" | |
| swapoff -a | |
| cp /etc/fstab ~/fstab.old | |
| sed -i '2 d' /etc/fstab | |
| echo "\ninstalling docker\n" |
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
| {"lastUpload":"2019-07-03T09:41:03.038Z","extensionVersion":"v3.3.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
| # Update the apt package list. | |
| sudo apt-get update -y | |
| # Install Docker's package dependencies. | |
| sudo apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| software-properties-common |
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
| { | |
| "pcawidgettemplate": "1.3.2", | |
| "pcasearchch": "1.3.1", | |
| "pcaattendantweb": "1.3.97", | |
| "pcaprovisionservice": "1.3.8", | |
| "pcamailservice": "1.3.7", | |
| "pcastatisticsservice": "1.3.5", | |
| "pcadockerwamprouter": "1.3.3", | |
| "pcabroadsoftservice": "1.3.35", | |
| "pcaomnidirservice": "1.3.9", |