summaryrefslogtreecommitdiffstats
path: root/bin/prepare_mock.py
blob: 245113a5540baec5332c62aa2b612f955f4ed638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3

import os
import shutil
import socket

iddir = 'pillar/id/'
secretiddir = 'pillar/secret/id/'
baseidfile = 'pillar/mock/example.sls'
myidfile = socket.gethostname() + '.sls'

shutil.copyfile(baseidfile, os.path.join(iddir, myidfile))
os.makedirs(secretiddir)
shutil.copyfile(baseidfile, os.path.join(secretiddir, myidfile))