9 lines
124 B
Bash
Executable File
9 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat <<EVAL
|
|
current_dir=`pwd`
|
|
cd `kickstart root-dir`/kickstart/
|
|
source install.sh
|
|
cd $current_dir
|
|
EVAL
|