This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# waiting for copyright from vkanevska/centos_bstick.sh I may not have any right to make changes. | |
# if this is the case will remove this fork. | |
# create custom bootable iso for CentOS 7 with kickstart | |
if [ $# -lt 2 ] | |
then | |
echo "Usage1: $0 sourceiso anaconda-ks.cfg" | |
exit 1 | |
else |