Add bootstrap_rattail_base() and related tweaks

the idea here is to have a "one stop shop" for base requirements,
we'll see how useful it is in practice i guess
This commit is contained in:
Lance Edgar 2021-06-11 18:38:16 -05:00
parent 506b88d3e2
commit 1fd9ad48d6
3 changed files with 66 additions and 21 deletions

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar
# Copyright © 2010-2021 Lance Edgar
#
# This file is part of Rattail.
#
@ -34,7 +34,7 @@ def install(c):
"""
Install the PostgreSQL database service
"""
apt.install(c, 'postgresql')
apt.install(c, 'postgresql', 'libpq-dev')
def get_version(c):