Added mising link to config file

added missing link to email configuration file
added force modifier for seed/migrate command
Change-Id: I9f65e1ab4e60dd75c0a2b6bb58b101ef36416f29
This commit is contained in:
Sebastian Marcet 2016-03-16 14:13:52 -03:00
parent 0bd2988d1c
commit e7239d4746
1 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@ function site_init {
ln -sf /etc/openstackid/app.php $target_dir/app/config/$LARAVEL_ENV/app.php
ln -sf /etc/openstackid/log.php $target_dir/app/config/$LARAVEL_ENV/log.php
ln -sf /etc/openstackid/server.php $target_dir/app/config/$LARAVEL_ENV/server.php
ln -sf /etc/openstackid/mail.php $target_dir/app/config/$LARAVEL_ENV/mail.php
# convert app/storage into symlink and set permissions
mv $target_dir/app/storage $SITE_ROOT/
chmod 02770 $SITE_ROOT/storage
@ -185,6 +186,7 @@ function site_update {
ln -sf /etc/openstackid/app.php $target_dir/app/config/$LARAVEL_ENV/app.php
ln -sf /etc/openstackid/log.php $target_dir/app/config/$LARAVEL_ENV/log.php
ln -sf /etc/openstackid/server.php $target_dir/app/config/$LARAVEL_ENV/server.php
ln -sf /etc/openstackid/mail.php $target_dir/app/config/$LARAVEL_ENV/mail.php
# link shared app/storage directory
rm -rf $target_dir/app/storage
ln -s $SITE_ROOT/storage $target_dir/app