Configure formulas in prepare_minion.py
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
parent
7f9bf11048
commit
5e262f5f5f
@ -9,6 +9,7 @@ import socket
|
|||||||
roles = roles.get()
|
roles = roles.get()
|
||||||
grainsfile = '/etc/salt/grains'
|
grainsfile = '/etc/salt/grains'
|
||||||
idfile = 'pillar/id/' + socket.gethostname() + '.sls'
|
idfile = 'pillar/id/' + socket.gethostname() + '.sls'
|
||||||
|
configfile = '/etc/salt/minion.d/local.conf'
|
||||||
mypwd = os.getcwd()
|
mypwd = os.getcwd()
|
||||||
|
|
||||||
grainsdata = {'roles': roles}
|
grainsdata = {'roles': roles}
|
||||||
@ -19,5 +20,13 @@ with open(grainsfile, mode='w') as grainsfh:
|
|||||||
with open(idfile, mode='w') as idfh:
|
with open(idfile, mode='w') as idfh:
|
||||||
idfh.write('# empty')
|
idfh.write('# empty')
|
||||||
|
|
||||||
|
with open(configfile, mode='w') as configfh:
|
||||||
|
configfh.write('''# written by prepare_minion.py
|
||||||
|
file_roots:
|
||||||
|
production:
|
||||||
|
- /srv/salt
|
||||||
|
- /srv/formulas/salt-formula
|
||||||
|
''')
|
||||||
|
|
||||||
os.symlink(mypwd + '/salt', '/srv/salt')
|
os.symlink(mypwd + '/salt', '/srv/salt')
|
||||||
os.symlink(mypwd + '/pillar', '/srv/pillar')
|
os.symlink(mypwd + '/pillar', '/srv/pillar')
|
||||||
|
Loading…
Reference in New Issue
Block a user