Blame tcar-scripts-prepare/prepare_getWorkplaceConf.sh
|
Alain Reguera Delgado |
c554f1 |
#!/bin/bash
|
|
Alain Reguera Delgado |
c554f1 |
######################################################################
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
a44aed |
# prepare_getWorkplaceConf.sh -- This function prints to standard
|
|
Alain Reguera Delgado |
a44aed |
# output all the models configuration files (and their templates)
|
|
Alain Reguera Delgado |
a44aed |
# from The CentOS Artwork Repository.
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
c554f1 |
# Written by:
|
|
Alain Reguera Delgado |
c554f1 |
# * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
c554f1 |
# Copyright (C) 2009-2013 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
c554f1 |
# This program is free software; you can redistribute it and/or modify
|
|
Alain Reguera Delgado |
c554f1 |
# it under the terms of the GNU General Public License as published by
|
|
Alain Reguera Delgado |
c554f1 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
Alain Reguera Delgado |
c554f1 |
# your option) any later version.
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
c554f1 |
# This program is distributed in the hope that it will be useful, but
|
|
Alain Reguera Delgado |
c554f1 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
c554f1 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
c554f1 |
# General Public License for more details.
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
c554f1 |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
c554f1 |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
c554f1 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
c554f1 |
#
|
|
Alain Reguera Delgado |
c554f1 |
######################################################################
|
|
Alain Reguera Delgado |
c554f1 |
|
|
Alain Reguera Delgado |
a44aed |
function prepare_getWorkplaceConf {
|
|
Alain Reguera Delgado |
c554f1 |
|
|
Alain Reguera Delgado |
a44aed |
tcar_getFilesList -p '.+\.conf(\.tpl)?$' -t 'f' ${TCAR_BASEDIR}/Models/
|
|
Alain Reguera Delgado |
c554f1 |
|
|
Alain Reguera Delgado |
c554f1 |
}
|