debian
This commit is contained in:
parent
7dfea7c580
commit
356f2723f1
|
@ -0,0 +1 @@
|
||||||
|
11
|
|
@ -0,0 +1,19 @@
|
||||||
|
Source: eole-lemur
|
||||||
|
Section: admin
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Cadoles <contact@cadoles.com>
|
||||||
|
Build-depends: debhelper (>=11)
|
||||||
|
Standards-Version: 3.9.4
|
||||||
|
Homepage: https://forge.cadoles.com/Infra/lemur
|
||||||
|
|
||||||
|
Package: eole-lemur
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${misc:Depends},
|
||||||
|
lemur,
|
||||||
|
lemur-static,
|
||||||
|
eole-postgresql,
|
||||||
|
# for PIP
|
||||||
|
python3-pip,
|
||||||
|
gcc,
|
||||||
|
python3-dev
|
||||||
|
Description: Lemur - eolisation
|
|
@ -0,0 +1,10 @@
|
||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: lemur
|
||||||
|
Upstream-Contact: Cadoles <contact@cadoles.com>
|
||||||
|
Source: https://forge.cadoles.com/Infra/lemur
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: Lemur
|
||||||
|
License: Apache-2.0 License
|
||||||
|
|
||||||
|
License: Apache-2.0 License
|
|
@ -0,0 +1,5 @@
|
||||||
|
dicos usr/share/eole/creole/
|
||||||
|
tmpl/* usr/share/eole/creole/distrib/
|
||||||
|
posttemplate/* usr/share/eole/posttemplate/
|
||||||
|
funcs/* usr/share/creole/funcs
|
||||||
|
db/* /usr/share/eole/db/lemur/gen/
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ "$1" = configure ]; then
|
||||||
|
# Make sure the administrative user exists
|
||||||
|
if ! getent passwd lemur > /dev/null; then
|
||||||
|
adduser --system --home /usr/share/lemur --no-create-home --group --gecos "User for lemur" lemur --quiet
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
|
@ -0,0 +1 @@
|
||||||
|
../lemur.service
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
Loading…
Reference in New Issue