Compare commits
4 Commits
b67e61bd1b
...
50c638a000
Author | SHA1 | Date | |
---|---|---|---|
50c638a000 | |||
ab2f6802a9 | |||
a42961e982 | |||
97db5ef6db |
0
bin/nbroles_to_grains.sh
Normal file → Executable file
0
bin/nbroles_to_grains.sh
Normal file → Executable file
@ -6,8 +6,9 @@ import socket
|
||||
|
||||
iddir = 'pillar/id/'
|
||||
secretiddir = 'pillar/secret/id/'
|
||||
baseidfile = 'atvkdev02_home_lysergic_dev.sls'
|
||||
baseidfile = 'pillar/mock/example.sls'
|
||||
myidfile = socket.gethostname() + '.sls'
|
||||
|
||||
shutil.copyfile(iddir + baseidfile, iddir + myidfile)
|
||||
shutil.copyfile(secretiddir + baseidfile, secretiddir + myidfile)
|
||||
shutil.copyfile(baseidfile, os.path.join(iddir, myidfile))
|
||||
os.makedirs(secretiddir)
|
||||
shutil.copyfile(baseidfile, os.path.join(secretiddir, myidfile))
|
||||
|
13
bin/roles.py
13
bin/roles.py
@ -8,10 +8,17 @@ excluded = ['common-suse', 'minion']
|
||||
def get():
|
||||
for root in ['pillar', 'salt']:
|
||||
for rootdir, subdirs, files in os.walk(os.path.join(root, 'role')):
|
||||
myrootdir = rootdir.split('/')
|
||||
if len(myrootdir) > 2:
|
||||
level = myrootdir[2:]
|
||||
for file in files:
|
||||
role = os.path.splitext(file)[0]
|
||||
if not role in excluded and not role in roles:
|
||||
roles.append(role)
|
||||
splitfile = os.path.splitext(file)
|
||||
if len(splitfile) == 2 and splitfile[1] == '.sls':
|
||||
role = os.path.splitext(file)[0]
|
||||
if len(myrootdir) > 2:
|
||||
role = '.'.join(level) + '.' + role
|
||||
if not role in excluded and not role in roles:
|
||||
roles.append(role)
|
||||
return roles
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
1
pillar/mock/README.md
Normal file
1
pillar/mock/README.md
Normal file
@ -0,0 +1 @@
|
||||
This directory contains a sample pillar which is used for mocking and testing runs - the production infrastructure will ignore it. If new pillar options are introduced, it is encouraged to add them along with sample values here.
|
41
pillar/mock/example.sls
Normal file
41
pillar/mock/example.sls
Normal file
@ -0,0 +1,41 @@
|
||||
include:
|
||||
- secret.id.{{ salt['grains.get']('id').replace('.', '_') }}
|
||||
|
||||
profile:
|
||||
matterbridge:
|
||||
instances:
|
||||
libertacasa-general:
|
||||
RemoteNickFormat: "{NOPINGNICK}/{LABEL}: "
|
||||
IgnoreFailureOnStart: True
|
||||
MessageSplit: True
|
||||
MediaDownloadPath: /var/lib/matterbridge/libertacasa-general
|
||||
MediaServerDownload: "https://dummy.load.casa"
|
||||
accounts:
|
||||
libertacasa:
|
||||
protocol: irc
|
||||
Nick: mocker02
|
||||
NickServNick: mocker
|
||||
Server: 'irc.casa:6697'
|
||||
UseTLS: True
|
||||
UseSASL: True
|
||||
Label: libcasa
|
||||
Charset: utf8
|
||||
IgnoreNicks: HistServ
|
||||
UseRelayMsg: True
|
||||
RemoteNickFormat: "{NICK}/{PROTOCOL}-{LABEL}"
|
||||
ergo:
|
||||
protocol: irc
|
||||
Nick: mocker
|
||||
Server: 'irc.ergo.chat:6697'
|
||||
UseTLS: True
|
||||
Label: ergo
|
||||
UseRelayMsg: True
|
||||
gateways:
|
||||
foobar:
|
||||
irc.libertacasa: '#dev'
|
||||
irc.ergo: '#chat'
|
||||
lighttpd:
|
||||
vhosts:
|
||||
matterbridge-general:
|
||||
host: mocker.example.com
|
||||
root: /var/lib/matterbridge/libertacasa-general
|
@ -1,2 +0,0 @@
|
||||
include:
|
||||
- profile.test-webserver
|
Loading…
x
Reference in New Issue
Block a user