設定ファイル選択させる

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

  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="11" name="設定ファイルを選択させる" def="${stack.application.properties.products-dir}/select-config-1.0.0/win.xml"/>
        <product no="12" name="設定ファイルを選択させる" def="${stack.application.properties.products-dir}/select-config-1.0.0/linux.xml"/>
      </products>
      <install-afters/>
    </stack>
    
    これは、「設定ファイルを選択させる」というプロダクトが、
    「products/samples/select-config-1.0.0/win.xml」 もしくは、 「products/samples/select-config-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>Select Config File</name>
        <ver>1.0.0</ver>
        <required>false</required>
        <localDir>products\samples\select-config-${product.ver}</localDir>
        <description>設定ファイルを選択させます。</description>
        <properties>
          <property name="installDir">${define.windows.openStandia.installDir}\samples\select-config</property>
          <property name="tmp">${define.windows.openStandia.tmp}</property>
        </properties>
        <config>
          <pattern sub="1">1番目の設定</pattern>
          <pattern sub="2">2番目の設定</pattern>
          <pattern sub="3">3番目の設定</pattern>
          <pattern sub="4">4番目の設定</pattern>
          <pattern sub="5">5番目の設定</pattern>
        </config>
        <files>
          <file url="http://localhost/samples/replace/conf/win/conf1-${product.ver}.txt">conf\win\conf1.txt</file>
          <file url="http://localhost/samples/replace/conf/win/conf2-${product.ver}.txt">conf\win\conf2.txt</file>
          <file url="http://localhost/samples/replace/conf/win/conf3-${product.ver}.txt">conf\win\conf3.txt</file>
          <file url="http://localhost/samples/replace/conf/win/conf4-${product.ver}.txt">conf\win\conf4.txt</file>
          <file url="http://localhost/samples/replace/conf/win/conf5-${product.ver}.txt">conf\win\conf5.txt</file>
        </files>
        <execs>
          <install>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>call</arg>
                <arg>start</arg>
                <arg>/b</arg>
                <arg>mkdir</arg>
                <arg>"${product.properties.installDir}"</arg>
                <arg>&amp;</arg>
                <arg>exit</arg>
                <arg>0</arg>
              </args>
            </exec>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>copy</arg>
                <arg>/b</arg>
                <arg>/y</arg>
                <arg>"${product.properties.tmp}\${product.localDir}\conf\win\conf${sub}.txt"</arg>
                <arg>"${product.properties.installDir}\conf.txt"</arg>
              </args>
            </exec>
          </install>
          <uninstall>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>call</arg>
                <arg>start</arg>
                <arg>/b</arg>
                <arg>mkdir</arg>
                <arg>"${product.properties.installDir}"</arg>
                <arg>&amp;</arg>
                <arg>exit</arg>
                <arg>0</arg>
              </args>
            </exec>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>copy</arg>
                <arg>/b</arg>
                <arg>/y</arg>
                <arg>"${product.properties.tmp}\${product.localDir}\conf\win\conf${sub}.txt"</arg>
                <arg>"${product.properties.installDir}\conf.txt"</arg>
              </args>
            </exec>
          </uninstall>
          <update>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>call</arg>
                <arg>start</arg>
                <arg>/b</arg>
                <arg>mkdir</arg>
                <arg>"${product.properties.installDir}"</arg>
                <arg>&amp;</arg>
                <arg>exit</arg>
                <arg>0</arg>
              </args>
            </exec>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>copy</arg>
                <arg>/b</arg>
                <arg>/y</arg>
                <arg>"${product.properties.tmp}\${product.localDir}\conf\win\conf${sub}.txt"</arg>
                <arg>"${product.properties.installDir}\conf.txt"</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>Select Config File</name>
        <ver>1.0.0</ver>
        <required>false</required>
        <localDir>products/samples/select-config-${product.ver}</localDir>
        <description>設定ファイルを選択させます。</description>
        <properties>
          <property name="installDir">${define.linux.openStandia.installDir}/samples/select-config</property>
          <property name="tmp">${define.linux.openStandia.tmp}</property>
        </properties>
        <config>
          <pattern sub="1">1番目の設定</pattern>
          <pattern sub="2">2番目の設定</pattern>
          <pattern sub="3">3番目の設定</pattern>
          <pattern sub="4">4番目の設定</pattern>
          <pattern sub="5">5番目の設定</pattern>
        </config>
        <files>
          <file url="http://localhost/samples/replace/conf/linux/conf1-${product.ver}.txt">conf/linux/conf1.txt</file>
          <file url="http://localhost/samples/replace/conf/linux/conf2-${product.ver}.txt">conf/linux/conf2.txt</file>
          <file url="http://localhost/samples/replace/conf/linux/conf3-${product.ver}.txt">conf/linux/conf3.txt</file>
          <file url="http://localhost/samples/replace/conf/linux/conf4-${product.ver}.txt">conf/linux/conf4.txt</file>
          <file url="http://localhost/samples/replace/conf/linux/conf5-${product.ver}.txt">conf/linux/conf5.txt</file>
        </files>
        <execs>
          <install>
            <exec cmd="mkdir">
              <args>
                <arg>-p</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
            <exec cmd="cp">
              <args>
                <arg>-pf</arg>
                <arg>"${product.properties.tmp}/${product.localDir}/conf/linux/conf${sub}.txt"</arg>
                <arg>"${product.properties.installDir}/conf.txt"</arg>
              </args>
            </exec>
          </install>
          <uninstall>
            <exec cmd="mkdir">
              <args>
                <arg>-p</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
            <exec cmd="cp">
              <args>
                <arg>-pf</arg>
                <arg>"${product.properties.tmp}/${product.localDir}/conf/linux/conf${sub}.txt"</arg>
                <arg>"${product.properties.installDir}/conf.txt"</arg>
              </args>
            </exec>
          </uninstall>
          <update>
            <exec cmd="mkdir">
              <args>
                <arg>-p</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
            <exec cmd="cp">
              <args>
                <arg>-pf</arg>
                <arg>"${product.properties.tmp}/${product.localDir}/conf/linux/conf${sub}.txt"</arg>
                <arg>"${product.properties.installDir}/conf.txt"</arg>
              </args>
            </exec>
          </update>
        </execs>
      </product>
      
      これは、「設定ファイルを選択させる」というプロダクトが、
      1. インストール先のディレクトリの作成
      2. インストール先に選択した番号のファイルをコピーする
という意味です。
    • ${sub}という特別な変数名で、選択したプロダクトの設定ファイル番号を取得することができます。
      ここでは、${sub}をファイル名の一部とすることで、コピーするファイルを切り替えています。

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

  2. 起動バッチ(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 SELECT_CONFIG_NO=11

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

        REM ##### 問い合わせ #####
        cls
        REM select-config
        set SELECT_CONFIG=y
        set /p SELECT_CONFIG=設定ファイルを選択させるサンプルを実行しますか?(y/n) [y]
        set SELECT_CONFIG_CONF=1
        if "%SELECT_CONFIG%" == "y" (
          echo 設定ファイルを選択してください。
          echo 1 : 1番目の設定
          echo 2 : 2番目の設定
          echo 3 : 3番目の設定
          echo 4 : 4番目の設定
          echo 5 : 5番目の設定
          set /p SELECT_CONFIG_CONF=
        )

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

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

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

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

        • 「"%SELECT_CONFIG%" == "y"」の部分の「%SELECT_CONFIG%」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「set INSTALLED_NO=%INSTALLED_NO%,%SELECT_CONFIG_NO%」及び「-Dno=%SELECT_CONFIG_NO%」の部分の「%SELECT_CONFIG%」は、
          【初期設定】項目で記述した変数名と合わせてください。
        • 選択した設定ファイルの番号をインストーラーに「-Dsub=%SELECT_CONFIG_CONF%」で教えてください。
    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
        SELECT_CONFIG_NO=12

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

        ##### 問い合わせ #####
        clear
        # select-config
        read -p "設定ファイルを選択させるサンプルを実行しますか?(y/n) [y]" SELECT_CONFIG
        if [ "${SELECT_CONFIG}" = "" ]; then
          SELECT_CONFIG=y
        fi
        SELECT_CONFIG_CONF=1
        if [ "${SELECT_CONFIG}" = "y" ]; then
          echo 設定ファイルを選択してください。
          echo 1 : 1番目の設定
          echo 2 : 2番目の設定
          echo 3 : 3番目の設定
          echo 4 : 4番目の設定
          echo 5 : 5番目の設定
          read SELECT_CONFIG_CONF
        fi

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

        ##### ダウンロード実行 #####
        echo
        echo ダウンロード処理を開始します...
        if [ "${SELECT_CONFIG}" = "y" ]; then
          ant -Dno=${SELECT_CONFIG_NO} -DstackXml=${STACK_XML} -f "${SCRIPTS_DIR}download.xml"
          if [ $? -ne 0 ]; then error_func; fi
        fi

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

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

        • 「"${SELECT_CONFIG}" = "y"」の部分の「${SELECT_CONFIG}」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「INSTALLED_NO=${INSTALLED_NO},${SELECT_CONFIG_NO}」及び「-Dno=${SELECT_CONFIG_NO}」の部分の「${SELECT_CONFIG_NO}」は、
          【初期設定】項目で記述した変数名と合わせてください。
        • 選択した設定ファイルの番号をインストーラーに「-Dsub=${SELECT_CONFIG_CONF}」で教えてください。

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