Skip to content

Commit

Permalink
Merge pull request #111 from ayapapa/dev
Browse files Browse the repository at this point in the history
3.3.4
  • Loading branch information
ayapapa authored Jul 14, 2017
2 parents b0bbdc3 + b6e1285 commit 7e830c6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion RM_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.3
3.3.4
6 changes: 4 additions & 2 deletions inst-script/config-logs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ backup_and_new_logdir() {
local owner=$4
local group=$5

pushd $parent_dir
if [ -d ${old_log_dir} -a "`readlink -f ${old_log_dir}`" != "${ALM_LOG_DIR}/${new_log_dir}" ]; then
pushd ${parent_dir}
# ログディレクトリが規定の場所に実態として存在する場合に
# log/alminium配下に移動する
if [ -d ${old_log_dir} -a ! -L ${old_log_dir} ]; then
if [ "`ls ${old_log_dir}`" != "" ]; then
mkdir -p ${old_log_dir}.backup
tar cvfz ${old_log_dir}.backup/"`date +%F-%H-%M-%S`".tar.gz ${old_log_dir}
Expand Down
3 changes: 2 additions & 1 deletion jenkins/setup/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo "## 1. ブラウザでhttp://${ALM_HOSTNAME}/jenkinsを表示"
echo "## 2. 指示に従い初期設定を実施"
echo "## 3. Jenkinsの管理において、「グローバルセキュリティの設定」をクリック"
echo "## 4. アクセス制御→権限管理で「全員に許可」を選択"
echo "## 5. 「保存ボタン」を押下"
echo "## 5. 「保存」ボタンを押下"
echo "## 以上を実施後、何らかのキーを押下してください。"
read PROCEED

Expand Down Expand Up @@ -126,6 +126,7 @@ echo "## ※ブラウザで表示エラーになる場合は、しばらく待
echo "## 1. Jenkinsの管理→グローバルセキュリティーの設定→アクセス制御で「Redmineユーザー認証」を選択"
echo "## 2. データベース名、DBユーザー、DBパスワードにalminiumと記載"
echo "## 3. Redmineバージョンで「1.2.0以上」を選択"
echo "## 4. 「保存」ボタンを押下"
echo "## インストール処理を継続するには、何らかのキーを押下してください。"
read PROCEED

8 changes: 8 additions & 0 deletions smelt
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,11 @@ fi
# config log directories
source inst-script/config-logs

# smelt completed
if [ "${ALM_UPGRADE}" != "y" ]; then
echo ""
echo "ALMiniumのインストールが終了しました。ブラウザーで、"
echo "http://${ALM_HOSTNAME}${ALM_SUBDIR}"
echo "をアクセスしてください。"
echo "10秒程度の初期化が行われた後、最初の画面が表示されます。"
fi

0 comments on commit 7e830c6

Please sign in to comment.