バッチファイルやシェルファイルを実行する

細かい部分に関しては、こちらを参照してください。

  1. スタックファイルを定義する
    <?xml version="1.0" encoding="Shift_JIS"?>
    <!DOCTYPE stack PUBLIC
      "-//OpenStandia/Installer//DTD Stack Configuration 1.0//EN"
      "http://openstandia.sourceforge.jp/dtd/stack_1_0.dtd">
    
    <stack>
      <application>
        <name>サンプルスタック</name>
        <ver>1.0.0.0</ver>
        <description>スタックのサンプルです。</description>
        <properties>
          <products-dir>products/samples</products-dir>
        </properties>
      </application>
      <install-befores/>
      <products>
        <product no="5" name="バッチファイルを実行する" def="${stack.application.properties.products-dir}/kick-shell-1.0.0/win.xml"/>
        <product no="6" name="シェルファイルを実行する" def="${stack.application.properties.products-dir}/kick-shell-1.0.0/linux.xml"/>
      </products>
      <install-afters/>
    </stack>
    
    これは、「バッチファイルを実行する」もしくは、「シェルファイルを実行する」というプロダクトが、
    「products/samples/kick-shell-1.0.0/win.xml」 もしくは、 「products/samples/kick-shell-1.0.0/linux.xml」
    に定義されているという意味です。
  2. プロダクトファイル(Windows/Linux)を定義する
    1. Windowsの場合
      <?xml version="1.0" encoding="Shift_JIS"?>
      <!DOCTYPE product PUBLIC
        "-//OpenStandia/Installer//DTD Product Configuration 1.0//EN"
        "http://openstandia.sourceforge.jp/dtd/product_1_0.dtd">
      
      <product os="windows">
        <name>Kick Shell File</name>
        <ver>1.0.0</ver>
        <required>false</required>
        <localDir>products\samples\kick-shell-${product.ver}</localDir>
        <description>バッチファイルを実行します。</description>
        <properties/>
        <files>
          <file url="http://localhost/samples/kick-shell/sh/install/install-${product.ver}.bat">sh\install\install.bat</file>
          <file url="http://localhost/samples/kick-shell/sh/uninstall/uninstall-${product.ver}.bat">sh\uninstall\uninstall.bat</file>
          <file url="http://localhost/samples/kick-shell/sh/update/update-${product.ver}.bat">sh\update\update.bat</file>
        </files>
        <execs>
          <install>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>sh\install\install.bat</arg>
              </args>
            </exec>
          </install>
          <uninstall>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>sh\uninstall\uninstall.bat</arg>
              </args>
            </exec>
          </uninstall>
          <update>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>sh\update\update.bat</arg>
              </args>
            </exec>
          </update>
        </execs>
      </product>
      
    2. Linuxの場合
      <?xml version="1.0" encoding="Shift_JIS"?>
      <!DOCTYPE product PUBLIC
        "-//OpenStandia/Installer//DTD Product Configuration 1.0//EN"
        "http://openstandia.sourceforge.jp/dtd/product_1_0.dtd">
      
      <product os="linux">
        <name>Kick Shell File</name>
        <ver>1.0.0</ver>
        <required>false</required>
        <localDir>products/samples/kick-shell-${product.ver}</localDir>
        <description>シェルファイルを実行します。</description>
        <properties/>
        <files>
          <file url="http://localhost/samples/kick-shell/sh/install/install-${product.ver}.sh">sh/install/install.sh</file>
          <file url="http://localhost/samples/kick-shell/sh/uninstall/uninstall-${product.ver}.sh">sh/uninstall/uninstall.sh</file>
          <file url="http://localhost/samples/kick-shell/sh/update/update-${product.ver}.sh">sh/update/update.sh</file>
        </files>
        <execs>
          <install>
            <exec cmd="sh">
              <args>
                <arg>sh/install/install.sh</arg>
              </args>
            </exec>
          </install>
          <uninstall>
            <exec cmd="sh">
              <args>
                <arg>sh/uninstall/uninstall.sh</arg>
              </args>
            </exec>
          </uninstall>
          <update>
            <exec cmd="sh">
              <args>
                <arg>sh/update/update.sh</arg>
              </args>
            </exec>
          </update>
        </execs>
      </product>
      
      これは、「バッチ(シェル)ファイルを実行する。」というプロダクトが、
      インストール時には、「install.bat(sh)」を、アンインストール時には、「uninstall.bat(sh)」を、
      アップデート時には、「update.bat(sh)」を実行するという意味です。

  3. 各ディレクトリ、各ファイルを以下のように配置する
    OpenStandiaIntaller
     |--bin
     |--create
     |--lib
     |--products
     |  |--samples
     |     |--kick-shell-1.0.0
     |        |--sh
     |        |  |--install
     |        |     |--install.bat
     |        |     |--install.sh
     |        |  |--uninstall
     |        |     |--uninstall.bat
     |        |     |--uninstall.sh
     |        |  |--update
     |        |     |--update.bat
     |        |     |--update.sh
     |        |--linux.xml
     |        |--win.xml
     |--scripts
     |--stack-sample.xml
    GUIの場合は、以上で終了です。
    OpenStandia/GUI Installerより上記で作成したスタックファイルを読み込ませることで実行できるはずです。
    CUIの場合は、引き続き以下を行ってください。

  4. 起動バッチ(setup.bat)、起動シェル(setup.sh)の作成(編集)
    1. Windowsの場合
      1. OpenStandia/Installerに付属の起動バッチ(setup.bat)をメモ帳等で開いてください。
      2. 【初期設定】項目に使用するスタックファイルを定義する(l.4付近)

        REM ##### 初期設定 #####
        set OPENSTANDIA_INSTALLER_VER=sample
        set STACK_XML=stack-%OPENSTANDIA_INSTALLER_VER%.xml

        • ここでは、「stack-sample.xml」となるように定義しています。
      3. 【初期設定】項目にプロダクトの番号を定義する(l.4付近)

        REM ##### 初期設定 #####
        set OPENSTANDIA_INSTALLER_VER=sample
        set STACK_XML=stack-%OPENSTANDIA_INSTALLER_VER%.xml
        set ANT_DIR=apache-ant-1.7.0
        set SCRIPTS_DIR=scripts
        set KICK_SHELL_NO=5

        • スタックファイルに記述した該当プロダクトの番号(stack.products.product.no)の値である必要があります。
      4. 【問い合わせ】項目を記述する(l.79付近)

        REM ##### 問い合わせ #####
        cls
        REM kick-shell
        set KICK_SHELL=y
        set /p KICK_SHELL=バッチファイルを実行するサンプルを実行しますか?(y/n) [y]

      5. 【ダウンロード実行】項目を記述する(l.124付近)

        REM ##### ダウンロード実行 #####
        echo.
        echo ダウンロード処理を開始します...
        if "%KICK_SHELL%" == "y" (
          call ant -Dno=%KICK_SHELL_NO% -DstackXml=%STACK_XML% -f "%SCRIPTS_DIR%download.xml"
          if errorlevel 1 goto error
        )

        • 「"%KICK_SHELL%" == "y"」の部分の「%KICK_SHELL%」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「-Dno=%KICK_SHELL_NO%」の部分の「%KICK_SHELL_NO%」は、
          【初期設定】項目で記述した変数名と合わせてください。
      6. 【インストール実行】項目を記述する(l.124付近)

        REM ##### インストール実行 #####
        set INSTALLED_NO=
        echo.
        echo %MODE_STR%処理を開始します...
        if "%KICK_SHELL%" == "y" (
          set INSTALLED_NO=%INSTALLED_NO%,%KICK_SHELL_NO%
          call ant -Dno=%KICK_SHELL_NO% -Dmode=%MODE% -DinstalledNo="%INSTALLED_NO%" -DstackXml=%STACK_XML% -f "%SCRIPTS_DIR%install.xml"
          if errorlevel 1 goto error
        )

        • 「"%KICK_SHELL%" == "y"」の部分の「%KICK_SHELL%」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「set INSTALLED_NO=%INSTALLED_NO%,%KICK_SHELL_NO%」及び「-Dno=%KICK_SHELL_NO%」の部分の「%KICK_SHELL_NO%」は、
          【初期設定】項目で記述した変数名と合わせてください。
    2. Linuxの場合
      1. OpenStandia/Installerに付属の起動シェル(setup.sh)をUTF-8で編集できるエディター等で開いてください。
      2. 【初期設定】項目に使用するスタックファイルを定義する(l.5付近)

        ##### 初期設定 #####
        OS_LANG=UTF-8
        OPENSTANDIA_INSTALLER_VER=sample
        STACK_XML=stack-${OPENSTANDIA_INSTALLER_VER}.xml

        • ここでは、「stack-sample.xml」となるように定義しています。
      3. 【初期設定】項目にプロダクトの番号を定義する(l.5付近)

        ##### 初期設定 #####
        OS_LANG=UTF-8
        OPENSTANDIA_INSTALLER_VER=sample
        STACK_XML=stack-${OPENSTANDIA_INSTALLER_VER}.xml
        ANT_DIR=apache-ant-1.7.0
        SCRIPTS_DIR=scripts
        KICK_SHELL_NO=6

        • スタックファイルに記述した該当プロダクトの番号(stack.products.product.no)の値である必要があります。
      4. 【問い合わせ】項目を記述する(l.85付近)

        ##### 問い合わせ #####
        clear
        # kick-shell
        read -p "シェルファイルを実行するサンプルを実行しますか?(y/n) [y]" KICK_SHELL
        if [ "${KICK_SHELL}" = "" ]; then
          KICK_SHELL=y
        fi
      5. 【ダウンロード実行】項目を記述する(l.146付近)

        ##### ダウンロード実行 #####
        echo
        echo ダウンロード処理を開始します...
        if [ "${KICK_SHELL}" = "y" ]; then
          ant -Dno=${KICK_SHELL_NO} -DstackXml=${STACK_XML} -f "${SCRIPTS_DIR}download.xml"
          if [ $? -ne 0 ]; then error_func; fi
        fi
        • 「"${KICK_SHELL}" = "y"」の部分の「${KICK_SHELL}」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「-Dno=${KICK_SHELL_NO}」の部分の「${KICK_SHELL_NO}」は、
          【初期設定】項目で記述した変数名と合わせてください。
      6. 【インストール実行】項目を記述する(l.183付近)

        ##### インストール実行 #####
        INSTALLED_NO=
        echo
        echo ${MODE_STR}処理を開始します...
        if [ "${KICK_SHELL}" = "y" ]; then
          INSTALLED_NO=${INSTALLED_NO},${KICK_SHELL_NO}
          ant -Dno=${KICK_SHELL_NO} -Dmode=${MODE} -D!installedNo="${INSTALLED_NO}" -DstackXml=${STACK_XML} -f "${SCRIPTS_DIR}install.xml"
          if [ $? -ne 0 ]; then error_func; fi
        fi

        • 「"${KICK_SHELL}" = "y"」の部分の「${KICK_SHELL}」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「INSTALLED_NO=${INSTALLED_NO},${KICK_SHELL_NO}」及び「-Dno=${KICK_SHELL_NO}」の部分の「${KICK_SHELL_NO}」は、
          【初期設定】項目で記述した変数名と合わせてください。

以上でCUIの場合も終了です。
各起動バッチ、シェルを実行することで実行できるはずです。