forked from mvo5/unattended-upgrades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (39 loc) · 1.44 KB
/
setup.py
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
#!/usr/bin/env python3
import glob
from setuptools import setup
from DistUtilsExtra.command import (
build_extra,
build_i18n,
)
if __name__ == "__main__":
setup(
name='unattended-upgrades',
version='0.1',
scripts=['unattended-upgrade'],
data_files=[
('../etc/logrotate.d/',
["data/logrotate.d/unattended-upgrades"]),
('../etc/update-motd.d/',
["data/92-unattended-upgrades"]),
('../usr/share/unattended-upgrades/',
["data/20auto-upgrades",
"data/20auto-upgrades-disabled",
"data/50unattended-upgrades",
"data/50unattended-upgrades.md5sum",
"unattended-upgrade-shutdown",
"data/update-motd-unattended-upgrades"]),
('../usr/share/man/man8/',
["man/unattended-upgrade.8"]),
('../etc/pm/sleep.d/',
["pm/sleep.d/10_unattended-upgrades-hibernate"]),
('../etc/kernel/postinst.d/',
glob.glob("kernel/postinst.d/*")),
('../lib/systemd/system-sleep/',
["debian/systemd-sleep/unattended-upgrades"]),
('../usr/share/apport/package-hooks/',
["debian/source_unattended-upgrades.py"])
],
cmdclass={"build": build_extra.build_extra,
"build_i18n": build_i18n.build_i18n},
test_suite="test",
)