]>
Commit | Line | Data |
---|---|---|
16de2752 | 1 | #!/sbin/openrc-run |
2 | ||
3 | name="web2ldap" | |
4 | description="Full-featured LDAP client running as web application" | |
5 | ||
6 | : ${command_user:="nobody:nogroup"} | |
7 | ||
8 | command="/usr/bin/python3" | |
9 | command_args="-m web2ldap.wsgi $command_args" | |
10 | command_background=true | |
11 | pidfile="/run/web2ldap.pid" | |
12 | ||
13 | depends() { | |
14 | need net | |
15 | use ldap | |
16 | } |