]> git.pld-linux.org Git - packages/fedmsg-notify.git/blame - _pld.py
setup distro_specific/_pld
[packages/fedmsg-notify.git] / _pld.py
CommitLineData
e25a3641
ER
1# This file is a part of fedmsg-notify.
2#
3# Authors: Elan Ruusamäe <glen@pld-linux.org>
4
5import logging
6
7log = logging.getLogger('moksha.hub')
8
9def get_installed_packages():
10 """Retrieve the packages installed on the system"""
11 return []
12
13def get_user_packages(usernames):
14 """Retrieve the packages maintained by `usernames`"""
15 return []
16
17def get_reported_bugs():
18 """
19 Not implemented on PLD Linux, just return empty set
20 """
21
22 return set()
This page took 0.249718 seconds and 4 git commands to generate.