5 Commits

13 changed files with 61 additions and 29 deletions

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
12

19
debian/control vendored Normal file
View File

@ -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

10
debian/copyright vendored Normal file
View File

@ -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

5
debian/eole-lemur.install vendored Normal file
View File

@ -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/

12
debian/eole-lemur.postinst vendored Normal file
View File

@ -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

1
debian/lemur.service vendored Symbolic link
View File

@ -0,0 +1 @@
../lemur.service

11
debian/rules vendored Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
override_dh_installsystemd:
dh_installsystemd --name=lemur --no-enable --no-start --no-stop-on-upgrade

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

View File

@ -1,12 +0,0 @@
[Unit]
Description=Lemur
After=lemur.service
[Service]
Environment="LEMUR_CONF=/etc/lemur/lemur.conf.py"
ExecStart=/usr/bin/lemur certificate reissue --commit
User=lemur
Group=lemur
[Install]
WantedBy=basic.target

View File

@ -1,9 +0,0 @@
[Unit]
Description=Crontab for Lemur
[Timer]
OnCalendar=daily
Unit=lemur_cron.service
[Install]
WantedBy=timers.target

View File

@ -3,7 +3,7 @@
set -e
# install unrelease python modules
pip3 install alembic-autogenerate-enums==0.0.2 asyncpool==1.0 certsrv==2.1.1 cryptography==3.1.1 dnspython3==1.15.0 dyn==1.8.1 flask-replicated==1.4 javaobj-py3==0.4.0.1 jsonlines==1.2.0 logmatic-python==0.1.7 marshmallow==2.20.4 pycryptodomex==3.9.7 pyjks==20.0.0 raven[flask]==6.10.0 twofish==0.3.0 pyjwt==2.1.0
pip3 install alembic-autogenerate-enums==0.0.2 asyncpool==1.0 certsrv==2.1.1 cryptography==3.1.1 dnspython3==1.15.0 dyn==1.8.1 flask-replicated==1.4 javaobj-py3==0.4.0.1 jsonlines==1.2.0 logmatic-python==0.1.7 marshmallow==2.20.4 pycryptodomex==3.9.7 pyjks==20.0.0 raven[flask]==6.10.0 twofish==0.3.0
mkdir -p /var/log/lemur/
chown lemur: /var/log/lemur/
@ -18,6 +18,4 @@ psql -Upostgres -c "grant all on all functions in schema public to lemur" lemur
su - lemur -s /bin/bash -c "lemur --config=/etc/lemur/lemur.conf.py init --password $(CreoleGet lemur_admin_password)"
systemctl stop postgresql.service
systemctl enable --now lemur_cron.timer
exit 0

View File

@ -26,7 +26,6 @@ LEMUR_ALLOWED_DOMAINS = []
LEMUR_EMAIL = '%%lemur_admin_email'
LEMUR_SECURITY_TEAM_EMAIL = []
LEMUR_EMAIL_SENDER = 'smtp'
# Certificate Defaults

View File

@ -16,7 +16,3 @@ sqlscripts:
- /usr/share/eole/db/lemur/gen/lemur.sql
pwd_files:
- {'file': '/etc/lemur/lemur.conf.py', 'pattern': "SQLALCHEMY_DATABASE_PASSWORD = '"}
%set %%var = %%getVar('risotto_main_dbname', None)
%if not %%is_empty(%%var)
- {'file': '/etc/risotto/risotto.conf', 'pattern': "LEMUR_DB_PASSWORD='"}
%end if