1
0
mirror of https://github.com/krislamo/vagrant-easyredmine synced 2024-09-19 15:30:34 +00:00

customize the login background image

This commit is contained in:
Mark Heiges 2016-08-24 21:25:10 -04:00
parent beddc346c2
commit ab1ffa9f48
3 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,4 @@
easyredmine_login_bg_img: login-bg-58894778db89f0c55f5aa371eff62b7475325258f4308e9c286f988a37e0e44b.jpg
redmine_mail_alias: redmine@localhost
redmine_owner: vagrant
redmine_uid: ''

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@ -64,18 +64,25 @@
become: no
- name: install ebrc_settings.rake
copy: dest='/opt/easyredmine/lib/tasks/ebrc_settings.rake'
copy: dest='{{ redmine_root_dir }}/lib/tasks/ebrc_settings.rake'
src='ebrc_settings.rake'
owner='{{ redmine_owner }}'
become: yes
- name: install additional_environment.rb
copy: dest='/opt/easyredmine/config/additional_environment.rb'
copy: dest='{{ redmine_root_dir }}/config/additional_environment.rb'
src='additional_environment.rb'
owner='{{ redmine_owner }}'
become: yes
notify: restart nginx
- name: install custom login background image
copy: dest='{{ redmine_root_dir }}/public/assets/{{ easyredmine_login_bg_img }}'
src='{{ easyredmine_login_bg_img }}'
owner='{{ redmine_owner }}'
become: yes
notify: restart nginx
- name: restrict config permissions
file: path='{{ redmine_root_dir }}/config'
mode=0770