diff options
| author | makefu <github@syntax-fehler.de> | 2013-01-10 14:37:10 +0100 | 
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2013-01-10 14:37:10 +0100 | 
| commit | 7296c90dff5e260c6279aed071fe507a4ddedc4a (patch) | |
| tree | f569e130dee7b084c1afc078e0d19e17b7578362 /minikrebs/prepare | |
| parent | 9b29cf3939802ab1cf634e6185f5b0beac52e590 (diff) | |
emergency commit, i am so sorry...
Diffstat (limited to 'minikrebs/prepare')
| -rwxr-xr-x | minikrebs/prepare | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/minikrebs/prepare b/minikrebs/prepare index 610c1299..6b69db50 100755 --- a/minikrebs/prepare +++ b/minikrebs/prepare @@ -24,6 +24,7 @@ echo  echo "copying generic init:"  cp --remove-destination  profiles/init  builder/init  echo "  profile/init -> builder/init" +[ -e builder/overlay ] && echo "removing old overlay" && rm -rf builder/overlay  echo  echo "copying profile:"  find  profiles/$PROFILE -mindepth 1 -maxdepth 1| while read file; do @@ -34,4 +35,11 @@ done  echo  echo $PROFILE > builder/current_profile -echo 'now run `builder/init`' +echo "Finished Preparing Profile $PROFILE" +echo 'run `builder/init`' + +if [ -e builder/overlay ];then +    echo +    echo "This profile also contains overlay data," +    echo 'run `builder/init_overlay` to copy' +fi  | 
