bootjp/sakura_vps_maintenance_check

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (0.0.1) of this package.

Check whether the IP address to the maintenance information page of Sakura VPS exists

0.0.1 2016-04-11 05:43 UTC

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

Build Status Scrutinizer Code Quality

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