-
Notifications
You must be signed in to change notification settings - Fork 29
/
service_win32.spec
78 lines (75 loc) · 2.91 KB
/
service_win32.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(['service_win32.py'],
pathex=['C:\\data\\mamonsu'],
binaries=[],
datas=[],
hiddenimports=[
'mamonsu.plugins.pgsql.archive_command',
'mamonsu.plugins.pgsql.autovacuum',
'mamonsu.plugins.pgsql.bgwriter',
'mamonsu.plugins.pgsql.cfs',
'mamonsu.plugins.pgsql.checkpoint',
'mamonsu.plugins.pgsql.connections',
'mamonsu.plugins.pgsql.databases',
'mamonsu.plugins.pgsql.health',
'mamonsu.plugins.pgsql.instance',
'mamonsu.plugins.pgsql.oldest',
'mamonsu.plugins.pgsql.pg_buffercache',
'mamonsu.plugins.pgsql.pg_locks',
'mamonsu.plugins.pgsql.plugin',
'mamonsu.plugins.pgsql.pool',
'mamonsu.plugins.pgsql.prepared_transaction',
'mamonsu.plugins.pgsql.relations_size',
'mamonsu.plugins.pgsql.replication',
'mamonsu.plugins.pgsql.statements',
'mamonsu.plugins.pgsql.wait_sampling',
'mamonsu.plugins.pgsql.wal',
'mamonsu.plugins.system.windows.cpu',
'mamonsu.plugins.system.windows.disk_stats',
'mamonsu.plugins.system.windows.helpers',
'mamonsu.plugins.system.windows.memory',
'mamonsu.plugins.system.windows.network',
'mamonsu.lib.senders.log',
'mamonsu.lib.senders.zbx',
'mamonsu.tools.agent.agent',
'mamonsu.tools.agent.start',
'mamonsu',
'mamonsu.plugins',
'mamonsu.plugins.pgsql',
'mamonsu.plugins.system.windows',
'mamonsu.tools.agent',
'mamonsu.tools.bootstrap',
'mamonsu.tools.report',
'mamonsu.tools.sysinfo',
'mamonsu.tools.tune',
'mamonsu.tools.zabbix_cli',
'mamonsu.plugins.common.health',
'mamonsu.plugins.common',
'win32timezone',
'mamonsu.plugins.pgsql.memory_leak_diagnostic',
'mamonsu.plugins.pgsql.relations_size'
],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='service_win32',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True )