mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-27 12:00:10 +00:00
58ee85f39e
The comment based hook is destroyed during early install process. Use python to manipulate the autoinstall file in a more sophisticated way. Also refactor the initramfs hook material to be standalone files.
13 lines
252 B
Plaintext
13 lines
252 B
Plaintext
import yaml
|
|
import sys
|
|
|
|
ainst = {}
|
|
with open('/autoinstall.yaml', 'r') as allin:
|
|
ainst = yaml.safe_load(allin)
|
|
|
|
ainst['storage']['layout']['password'] = sys.argv[1]
|
|
|
|
with open('/autoinstall.yaml', 'w') as allout:
|
|
yaml.safe_dump(ainst, allout)
|
|
|