diff options
author | mark <mark> | 2011-05-20 01:19:56 +0000 |
---|---|---|
committer | mark <mark> | 2011-05-20 01:19:56 +0000 |
commit | ec51d5b8f07321583e7ff556eb952b7774e1b405 (patch) | |
tree | c0af7e931b4543c4c18b665c415dbd6f2b7996b6 | |
parent | f1cfd3ba31c346283520ea88ad3b8b265559db02 (diff) |
install RT initialdata, #9569
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -216,7 +216,7 @@ perl-modules: s|%%%DIST_CONF%%%|${DIST_CONF}|g;\ " blib/script/* -install-perl-modules: perl-modules +install-perl-modules: perl-modules install-rt-initialdata [ -L ${PERL_INC_DEV_KLUDGE}/FS ] \ && rm ${PERL_INC_DEV_KLUDGE}/FS \ && mv ${PERL_INC_DEV_KLUDGE}/FS.old ${PERL_INC_DEV_KLUDGE}/FS \ @@ -376,6 +376,11 @@ install-rt: s'%%%FREESIDE_URL%%%'${FREESIDE_URL}'g;\ " ${RT_PATH}/etc/RT_SiteConfig.pm; fi +install-rt-initialdata: + if [ ${RT_ENABLED} -eq 1 ]; then \ + install -D -o freeside -g freeside -m 0440 rt/etc/initialdata \ + ${RT_PATH}/etc/initialdata; fi + configure-torrus: cd torrus; \ torrus_user=freeside var_user=freeside var_group=freeside ./configure |