diff options
author | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2017-05-23 14:59:24 +0100 |
---|---|---|
committer | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2017-05-23 14:59:24 +0100 |
commit | 9b874110e45b9af3a3bb0a7481bec8918a1c3adb (patch) | |
tree | a619d13d5c3e0913a41c54d352049d7d2efa1385 /old/extensions/add-config-files.configure | |
parent | 63224e2233280204626b58fcbe5224d3582c8627 (diff) | |
download | definitions-9b874110e45b9af3a3bb0a7481bec8918a1c3adb.tar.gz |
Move existing Baserock definitions into old/ subdirectory
This will be removed in due course.
Diffstat (limited to 'old/extensions/add-config-files.configure')
-rwxr-xr-x | old/extensions/add-config-files.configure | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/old/extensions/add-config-files.configure b/old/extensions/add-config-files.configure new file mode 100755 index 00000000..2cf96fd1 --- /dev/null +++ b/old/extensions/add-config-files.configure @@ -0,0 +1,26 @@ +#!/bin/sh +# Copyright (C) 2013,2015 Codethink Limited +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see <http://www.gnu.org/licenses/>. + + +# Copy all files located in $SRC_CONFIG_DIR to the image /etc. + + +set -e + +if [ "x${SRC_CONFIG_DIR}" != x ] +then + cp -r "$SRC_CONFIG_DIR"/* "$1/etc/" +fi + |