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
>>> Updating repositories metadata... | |
Updating pfSense-core repository catalogue... | |
pfSense-core repository is up-to-date. | |
Updating pfSense repository catalogue... | |
pfSense repository is up-to-date. | |
All repositories are up-to-date. | |
>>> Upgrading pkg... done. | |
>>> Updating repositories metadata... | |
Updating pfSense-core repository catalogue... | |
Fetching meta.txz: . done |
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
isitup () { | |
ip=$1 | |
while [ "$status" != "0" ] | |
do | |
echo -e "$ip is down!" | |
sleep 15 | |
ssh-keyscan $ip 2>&1 | grep -v "^$" > /dev/null | |
status=$? | |
done |
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
# | |
# Specify vCenter Server, vCenter Server username and vCenter Server user password | |
$vCenter="" | |
# | |
# Specify number of VMs you want to create | |
$vm_count = "33" | |
# | |
# Specify the VM you want to clone | |
$clone = "" |
OlderNewer