diff options
author | jonas <jonas@8f53b18a-e215-0410-8885-9f593d34873e> | 2006-10-14 09:51:31 +0000 |
---|---|---|
committer | jonas <jonas@8f53b18a-e215-0410-8885-9f593d34873e> | 2006-10-14 09:51:31 +0000 |
commit | f3697306960d5175829a155eb83990927ef7b1fe (patch) | |
tree | 366cb5b0f53429d8d2a1f0e919654861c51a9afe /common-settings | |
parent | 83b5520428bfe9d652f6009ad0d310d43727def2 (diff) |
Move config loading to new file common-settings, and rename file functions to commmon-functions.
git-svn-id: svn+ssh://xayide/home/jonas/private_svn/fleshybrid/homebase@34 8f53b18a-e215-0410-8885-9f593d34873e
Diffstat (limited to 'common-settings')
-rw-r--r-- | common-settings | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common-settings b/common-settings new file mode 100644 index 0000000..000ca69 --- /dev/null +++ b/common-settings @@ -0,0 +1,12 @@ +#!/bin/sh + +# Load settings + +set -e + +. ./config-DEFAULTS || exit 1 +. ./config-HOST || exit 1 +. ./config-TARGET || exit 1 +. ./config-MANDATED || exit 1 + +exit 0 |