Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Latest commit

 

History

History
50 lines (39 loc) · 1.47 KB

README.md

File metadata and controls

50 lines (39 loc) · 1.47 KB

さくらVPSのメンテナンスに情報にIPアドレスが乗っているかしらべるやつ

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

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