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
rh 6.0 kickstart with gpt. | |
1. add necessary service, remove unnecessary service | |
2. The last section starting with "#$SNIPPET('custom/xxyy')" are some post install scripts: | |
* modify /etc/hosts | |
127.0.0.1 localhost.localdomain localhost | |
private_ip hostname.jaseywang.me hostname | |
* remove zero route | |
* add some parameters to kernel options | |
* disable ipv6 | |
* add ntp server for each server to sync time |
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
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
# for real pushes, this would be "library" | |
targetOrg='trollin' | |
# https://github.com/tianon/dockerhub-public-proxy | |
publicProxy="$DOCKERHUB_PUBLIC_PROXY" | |
_curl() { |