bootjp / sakura_vps_maintenance_check
Check whether the IP address to the maintenance information page of Sakura VPS exists
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 1
pkg:composer/bootjp/sakura_vps_maintenance_check
Requires
- guzzlehttp/guzzle: ~5.0
This package is not auto-updated.
Last update: 2022-06-19 19:47:26 UTC
README
Check whether the IP address to the maintenance information page of Sakura VPS exists
how to use
git clone git@github.com:bootjp/CheckSakuraVPSMaintenans.git cd CheckSakuraVPSMaintenans/ # or cd checksakuravpsmaintenans/ composer install
and Edit ipaddress.ini
run of script
php sample.php
run of docker image (https://hub.docker.com/r/bootjp/checksakuravpsmaintenans/)
ex)
docker run -e ENV_INI="ini file path" -v ini file dir/:/tmp bootjp/checksakuravpsmaintenans php /app/sample.php docker run -it -e ENV_INI='/tmp/ipaddress.ini' -v $(pwd):/tmp bootjp/checksakuravpsmaintenans php /app/sample.php
run bash script
#!/bin/bash
pull_result=$(docker pull bootjp/checksakuravpsmaintenans)
pull_code=$?
run_result=$(docker run --rm -e ENV_INI='/tmp/ipadress.ini' -v /root/:/tmp/ bootjp/checksakuravpsmaintenans php /app/sample.php)
run_code=$?
if [ 0 -ne ${pull_code} ] ;then
echo ${pull_result} >&2
exit 1
elif [ 0 -ne ${run_code} ] ;then
echo ${run_result} >&2
exit 1
fi
exit 0