mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Make maintenance scripts installable
Add wrappers for the maintenance scripts to the setuptools configuration. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
85866796a4
commit
37188603b5
9 changed files with 9 additions and 0 deletions
6
setup.py
6
setup.py
|
@ -22,6 +22,12 @@ setup(
|
|||
'aurweb-git-auth = aurweb.git.auth:main',
|
||||
'aurweb-git-serve = aurweb.git.serve:main',
|
||||
'aurweb-git-update = aurweb.git.update:main',
|
||||
'aurweb-aurblup = aurweb.scripts.aurblup:main',
|
||||
'aurweb-mkpkglists = aurweb.scripts.mkpkglists:main',
|
||||
'aurweb-notify = aurweb.scripts.notify:main',
|
||||
'aurweb-pkgmaint = aurweb.scripts.pkgmaint:main',
|
||||
'aurweb-popupdate = aurweb.scripts.popupdate:main',
|
||||
'aurweb-tuvotereminder = aurweb.scripts.tuvotereminder:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
1. The default configuration file search path now points to /etc/aurweb/config.
|
||||
Make sure you copy your aurweb configuration to the new location before
|
||||
upgrading.
|
||||
|
||||
2. The maintenance scripts have been prefixed by "aurweb-" and can now be
|
||||
installed using `python3 setup.py install`.
|
||||
|
|
Loading…
Add table
Reference in a new issue