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
| memory_estimate_script=$(mktemp /tmp/tmp.XXXXXXXXXX) | |
| cat << EOF > $memory_estimate_script | |
| #!/bin/bash | |
| # Verifica si existe el archivo /proc/meminfo | |
| if [ ! -f /proc/meminfo ]; then | |
| echo 1024 | |
| exit 0 | |
| fi |
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
| a4b.amazonaws.com | |
| access-analyzer.amazonaws.com | |
| account.amazonaws.com | |
| acm-pca.amazonaws.com | |
| acm.amazonaws.com | |
| airflow-env.amazonaws.com | |
| airflow.amazonaws.com | |
| alexa-appkit.amazon.com | |
| alexa-connectedhome.amazon.com | |
| amazonmq.amazonaws.com |
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
| <VirtualHost *:80> | |
| ServerName example.example.com | |
| CustomLog /var/log/httpd/example.log combined | |
| ErrorLog /var/log/httpd/example_err.log | |
| LogLevel warn | |
| Redirect permanent / https://example.example.com/ | |
| </VirtualHost> | |
| <VirtualHost *:443> |
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
| <VirtualHost *:80> | |
| ServerName example.example.com | |
| CustomLog /var/log/httpd/example.log combined | |
| ErrorLog /var/log/httpd/example_err.log | |
| LogLevel warn | |
| Redirect permanent / https://example.example.com/ | |
| </VirtualHost> | |
| NameVirtualHost :443 |
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
| boxes = [ | |
| { | |
| :name => "srv1", | |
| :descripcion => "", | |
| :so => "linux", | |
| :box => "thorerik/ubuntu-20.04-desktop", | |
| :mem => "512", | |
| :cpu => "1", | |
| }, | |
| { |