postinst fixes
This commit is contained in:
parent
2af4b456b6
commit
63670f52e8
@ -1,5 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
CONFIG_DIR=/etc/fastapi-dls
|
||||||
|
|
||||||
|
echo "> Create config directory ..."
|
||||||
|
mkdir -p $CONFIG_DIR
|
||||||
|
|
||||||
echo "> Install service ..."
|
echo "> Install service ..."
|
||||||
cat <<EOF >/etc/systemd/system/fastapi-dls.service
|
cat <<EOF >/etc/systemd/system/fastapi-dls.service
|
||||||
[Unit]
|
[Unit]
|
||||||
@ -11,7 +16,7 @@ User=www-data
|
|||||||
Group=www-data
|
Group=www-data
|
||||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||||||
WorkingDirectory=/usr/share/fastapi-dls
|
WorkingDirectory=/usr/share/fastapi-dls
|
||||||
EnvironmentFile=/etc/fastapi-dls/env
|
EnvironmentFile=$CONFIG_DIR/env
|
||||||
ExecStart=uvicorn main:app \\
|
ExecStart=uvicorn main:app \\
|
||||||
--env-file /etc/fastapi-dls/env \\
|
--env-file /etc/fastapi-dls/env \\
|
||||||
--host \$DLS_URL --port \$DLS_PORT \\
|
--host \$DLS_URL --port \$DLS_PORT \\
|
||||||
@ -30,14 +35,9 @@ WantedBy=multi-user.target
|
|||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
CONFIG_DIR=/etc/fastapi-dls
|
|
||||||
|
|
||||||
echo "> Create config directory ..."
|
|
||||||
mkdir -p $CONFIG_DIR
|
|
||||||
|
|
||||||
echo "> Writing default config parameters ..."
|
echo "> Writing default config parameters ..."
|
||||||
touch $CONFIG_DIR/fastapi-dls/env
|
touch $CONFIG_DIR/env
|
||||||
cat <<EOF > $CONFIG_DIR/fastapi-dls/env
|
cat <<EOF >$CONFIG_DIR/env
|
||||||
DLS_URL=127.0.0.1
|
DLS_URL=127.0.0.1
|
||||||
DLS_PORT=443
|
DLS_PORT=443
|
||||||
LEASE_EXPIRE_DAYS=90
|
LEASE_EXPIRE_DAYS=90
|
||||||
|
Loading…
Reference in New Issue
Block a user