#!/bin/bash # # /usr/local/sbin/aah-change-logo # # Changelog # --------- # 0.1 2005-09-01 MatsK First raw search and replace, from @Home to @Work # 0.2 2005-12-29 MatsK Changed download location and added more remarks # 0.3 2006-01-27 flavour Created the download location & copied raw files in # # # ToDo # ---- # Add variable so its possible to do an bidirectional search and replace # # /var/build_aah/www/aah_logo.png - Asterisk@Home logo # /var/build_aah/www/aaw_logo.png - Asterisk@Work logo # mkdir -p /var/build_aah/www/maint mkdir -p /var/build_aah/www/meetme cp /var/www/html/index.html /var/build_aah/www cp /var/www/html/maint/index.php /var/build_aah/www/maint cp /var/www/html/meetme/index.php /var/build_aah/www/meetme # Be sure the file /var/build_aah/www/aaw_logo.png exists if [ ! -f /var/build_aah/www/aaw_logo.png ] then wget http://www.voip-info.org/users/833/1833/images/280/aaw_logo.png # If its not there, download it mv aaw_logo.png /var/build_aah/www/aaw_logo.png # And move it to /var/build_aah/www else echo "" fi # ------------------------------------------------------- # Replaces logotypes # ------------------------------------------------------- cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/aah_logo.png # Start page cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/maint/images/aah_logo.png # AMP cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/crm/themes/Love/images/company_logo.png # Sugar crm cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/crm/themes/Sugar/images/company_logo.png # Sugar crm cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/crm/themes/Shred/images/company_logo.png # Sugar crm cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/crm/themes/Links/images/company_logo.png # Sugar crm cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/crm/themes/Retro/images/company_logo.png # Sugar crm cp --reply=yes /var/build_aah/www/aaw_logo.png /var/www/html/crm/themes/Paradise/images/company_logo.png # Sugar crm # ------------------------------------------------------- # Change text "Asterisk@Home" to "Asterisk@Work" in # various files # ------------------------------------------------------- # Change /var/www/html/maint/index.php sed 's/Asterisk@Home/Asterisk@Work/g' /var/build_aah/www/maint/index.php > /var/www/html/maint/index.php # Change /var/www/html/meetme/index.php sed 's/Asterisk@Home - Web MeetMe/<title>Asterisk@Work - Web MeetMe/g' /var/build_aah/www/meetme/index.php > /var/www/html/meetme/index.php # Change /var/www/html/index.html sed 's/<title>Asterisk@Home/<title>Asterisk@Work/g' /var/build_aah/www/index.html > /var/www/html/index.html