Blame Scripts/Functions/Render/render_doPostActions.sh

c979f9
#!/bin/bash
c979f9
#
fbcc3d
# render_doPostActions.sh -- This function provides post-rendition
fbcc3d
# actions to PNG base-rendition output. Actions take place through any
fbcc3d
# command you specify in the `--post-rendition' option  (e.g., the
fbcc3d
# mogrify command from ImageMagick tool set.
c979f9
#
2d3646
# Copyright (C) 2009, 2010, 2011 The CentOS Project
fa95b1
#
fa95b1
# This program is free software; you can redistribute it and/or modify
fa95b1
# it under the terms of the GNU General Public License as published by
dcd347
# the Free Software Foundation; either version 2 of the License, or (at
dcd347
# your option) any later version.
fa95b1
#
74a058
# This program is distributed in the hope that it will be useful, but
74a058
# WITHOUT ANY WARRANTY; without even the implied warranty of
c979f9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
c979f9
# General Public License for more details.
c979f9
#
c979f9
# You should have received a copy of the GNU General Public License
c979f9
# along with this program; if not, write to the Free Software
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
7ac5a5
#
c979f9
# ----------------------------------------------------------------------
c979f9
# $Id$
c979f9
# ----------------------------------------------------------------------
c979f9
ab1d67
function render_doPostActions {
c979f9
fbcc3d
    # Define base-rendition output file extension.
fbcc3d
    local EXTENSION=$(render_getConfigOption "$ACTION" '2')
c979f9
fbcc3d
    # Define command string.
fbcc3d
    local COMMAND=$(render_getConfigOption "$ACTION" '3-')
fbcc3d
fbcc3d
    # Verify base-rendition output.
fbcc3d
    cli_checkFiles ${FILE}.${EXTENSION}
9b8686
fbcc3d
    # Execute command to base-rendition output.
fbcc3d
    eval $COMMAND ${FILE}.${EXTENSION}
fbcc3d
fbcc3d
    # Be sure the command was executed correctly. Otherwise stop
fbcc3d
    # script execution.
fbcc3d
    if [[ $? -ne 0 ]];then
fbcc3d
        exit
fbcc3d
    fi
c979f9
c979f9
}