IBM packages can be found here:
Apparently, two symbols are now missing, these two patches helped me.
| #!/usr/bin/env bash | |
| # | |
| # Certbot Nginx Reload | |
| # | |
| # Let's Encrypt Certbot post hook command for Nginx which checks the updated | |
| # configuration files and reloads the server if everything validates. | |
| # | |
| # Author : Justin Hartman <[email protected]> | |
| # Version : 1.0.1 | |
| # License : MIT <https://opensource.org/licenses/MIT> |
IBM packages can be found here:
Apparently, two symbols are now missing, these two patches helped me.
| #!/bin/bash | |
| # Run as root | |
| set -e | |
| apt-get update | |
| apt-get install -y build-essential | |
| apt-get install -y libncurses5-dev | |
| useradd mysql |
| #!/bin/bash | |
| # | |
| # #automysqlcheck.sh | |
| # | |
| # This is a small bash script that checks all mysql databases for errors | |
| # and mails a log file to a specified email address. All variables are | |
| # hardcoded for ease of use with cron. Any databases you wish not to check | |
| # should be added to the DBEXCLUDE list, with a space in between each name. | |
| # | |
| # original version by [email protected], UVic Fine Arts 2004 |
| $vsphere = "my-vc" | |
| $new_user = "newbie" | |
| $new_user_passwd = "new_sekret" | |
| $new_user_grp = "root" | |
| $root_user = "root" | |
| $root_passwd = "really_sekret" | |
| # Get all of the ESX servers (connect using Windows credentials) | |
| connect-viserver -server $vsphere |