We will have add one partition to a zpool.
You have the following set to appropriate values:
disk
: the path for your disk device, e.g./dev/sdb
or/dev/nvme0
efi
: the path for the EFI boot partition’s device, e.g./dev/sdb1
part
: the path to the partition of your root filesystem, e.g./dev/sdb2
This file contains 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
// https://stackoverflow.com/questions/52518298/how-to-create-a-script-mapper-in-keycloak | |
// https://stackoverflow.com/questions/48199539/best-way-to-test-debug-javascript-mappers-policies-in-keycloak | |
// https://docs.oracle.com/javase/10/nashorn/nashorn-java-api.htm#JSNUG119 | |
var client = keycloakSession.getContext().getClient(); | |
var forEach = Array.prototype.forEach; | |
// print(user.getRealmRoleMappings()); | |
var isAdmin = false; |
This file contains 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
provider "google" { | |
credentials = "${file("account.json")}" | |
project = "#####fill it out#####" | |
region = "europe-west1" | |
zone = "europe-west1-b" | |
} | |
resource "google_compute_firewall" "tsm-allow-dns" { | |
name = "firewall-dns" | |
network = "${google_compute_network.default.name}" |
This file contains 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
\documentclass[12pt,a4paper]{article} | |
\usepackage{amsmath} | |
\usepackage{amsfonts} | |
\usepackage{amssymb} | |
\usepackage[francais]{babel} | |
\usepackage[utf8]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage[left=2cm,right=2cm,top=3cm,bottom=2cm]{geometry} | |
\usepackage{multicol} |
This file contains 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 | |
find . -regex ".*\(aux\|bbl\|blg\|log\|nav\|out\|snm\|fls\|synctex\.gz\|fdb_latexmk\|toc\)$" -exec rm -i {} \; |