More or less a modification of Kubernetes on CentOS 7 with Firewalld post.
The original install script needs modification:
#!/bin/bash
dnf -y update| #!/usr/bin/env bash | |
| set -e | |
| # install dependencies | |
| apt-get install -y --no-install-recommends \ | |
| python3 python3-pip doxygen lcov && \ | |
| pip3 install setuptools && \ | |
| pip3 install coverxygen |
| #!/usr/bin/env bash | |
| set -e | |
| npm install -g jsonlint | |
| FILES="$(find examples src -iname '*.json')" | |
| for FILE in $FILES; do | |
| echo "${FILE}" |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <fcntl.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include "config.h" | |
| #include "test.h" | |
| #if HAVE_OPENSSL_SHA_H |
| #!/bin/bash | |
| # Dependencies | |
| # tpm2-tools-4.0.1-1.fc31.x86_64 | |
| # tpm2-tss-2.3.1-1.fc31.x86_64 | |
| # tpm2-tss-engine-master | |
| set -euxo pipefail | |
| export TPM2TOOLS_TCTI="device:/dev/tpmrm0" |
| GNU nano 4.3 disk-encryption.sh | |
| #!/bin/bash | |
| set -euxo pipefail | |
| rpm -qa clevis* cryptsetup* luks* tpm2* e*fspr* | sort | |
| # Creation | |
| # dd if=/dev/zero of=/dev/sda1 bs=1M status=progress |
| #!/bin/bash | |
| set -euxo pipefail | |
| export TPM2TOOLS_TCTI="device:/dev/tpmrm0" | |
| export TPM2_PKCS11_TCTI="device:/dev/tpmrm0" | |
| #export TPM2_PKCS11_LOG_LEVEL=2 | |
| tpm2_print_handles () { | |
| for i in transient saved-session loaded-session; |
More or less a modification of Kubernetes on CentOS 7 with Firewalld post.
The original install script needs modification:
#!/bin/bash
dnf -y update| import numpy as np | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| import matplotlib | |
| import sys | |
| import time | |
| ## Pre-procesar datos | |
| ConfirmedCases_raw = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv') | |
| Deaths_raw = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv') |