Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1174 → Rev 1175

/branches/v5.12-baouque/services/configurations/Makefile
New file
0,0 → 1,28
# installation de l'espace de test
# syntax:
# make <cible> [dbu=<bdd_utilisateur> [dbp=<bdd_mot_de_passe>]]
all: test
 
test:
@test '!' -e config.ini || { echo "config.ini exists"; exit 1; }
@cp config.defaut.ini config.ini
@sed -r -i -f test-conf.sed config.ini
@sed -r -i -f test-sous-conf.sed config_*.ini
@test -n "$(dbu)" -o -n "$(dbp)" && make bddconf || true
 
prod:
@test '!' -e config.ini || { echo "config.ini exists"; exit 1; }
@cp config.defaut.ini config.ini
@sed -r -i -f prod-conf.sed config.ini
@test -n "$(dbu)" -o -n "$(dbp)" && make bddconf || true
 
bddconf:
@test -n "$(dbu)" && sed -r -i "/^bdd_utilisateur/s/= .*/= \"$(dbu)\"/" config.ini || true
@test -n "$(dbp)" && sed -r -i "/^bdd_mot_de_passe/s/= .*/= \"$(dbp)\"/" config.ini || true
 
framework:
@mv framework.defaut.php framework.php
 
cache:
@cache=$(shell sed -n '/chemin_cache/s/.*= *//p' config.ini)
@test -n "$(cache)" && mkdir -p $(cache) || true
Property changes:
Added: svn:eol-style
+native
\ No newline at end of property