Oracle Solaris 10 9/10 インストールガイド (カスタム JumpStart/上級編)

開始スクリプトと終了スクリプトを使ったインストール継続期間の追跡

開始スクリプトと終了スクリプトを含めて、インストールの開始時刻と終了時刻を追跡することができます。次に例を示します。


例 4–2 開始時刻を追跡する開始スクリプト

# more begin-with-date
#!/bin/sh
#

echo
echo "Noting time that installation began in /tmp/install-begin-time"
echo "Install begin time: `date`" > /tmp/install-begin-time
echo
cat /tmp/install-begin-time
echo
#


例 4–3 終了時刻を追跡する終了スクリプト

# more finish*with*date
#!/bin/sh
#

cp /tmp/install-begin-time /a/var/tmp
echo
echo "Noting time that installation finished in /a/var/tmp/install-finish-time"
echo "Install finish time: `date`" > /a/var/tmp/install-finish-time
echo
cat /a/var/tmp/install-finish-time
#

開始時刻と終了時刻は、finish.log ファイルに記録されます。