| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function verify_doLinks { |
| |
| local -a LINKS |
| local -a TARGETS |
| local -a LINKS_MISSING |
| local LINKS_MISSING_ID='' |
| |
| |
| LINKS[0]=/home/centos/bin/centos-art |
| LINKS[1]=/home/centos/.fonts/denmark.ttf |
| LINKS[2]=/home/centos/.inkscape/palettes/CentOS.gpl |
| LINKS[3]=/home/centos/.$(rpm -q gimp | cut -d. -f-2)/palettes/CentOS.gpl |
| LINKS[4]=/home/centos/artwork/branches/Scripts |
| |
| |
| |
| |
| TARGETS[0]=/home/centos/artwork/trunk/Scripts/Bash/centos-art.sh |
| TARGETS[1]=/home/centos/artwork/trunk/Identity/Fonts/Ttf/denmark.ttf |
| TARGETS[2]=/home/centos/artwork/trunk/Identity/Colors/CentOS.gpl |
| TARGETS[3]=${TARGETS[2]} |
| TARGETS[4]=/home/centos/artwork/trunk/Scripts/ |
| |
| verify_doLinkCheck |
| verify_doLinkReport |
| verify_doLinkInstall |
| |
| |
| |
| verify_doLinks |
| |
| } |