diff --git a/check_process b/check_process index 8b9b820..cc2fe7c 100644 --- a/check_process +++ b/check_process @@ -2,7 +2,9 @@ ; Manifest domain="domain.tld" path="/path" + admin="john" is_public=1 + password="1Strong-Password" ; Checks pkg_linter=1 setup_sub_dir=1 diff --git a/conf/systemd.service b/conf/systemd.service index 59299ec..b1f5000 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -17,6 +17,9 @@ Environment=MONGO_URL=mongodb://localhost:27017/__APP__?replicaSet=rs01 Environment=MONGO_OPLOG_URL=mongodb://localhost:27017/local?replicaSet=rs01 Environment=ROOT_URL=https://__DOMAIN____PATH__ Environment=PORT=__PORT__ +Environment=ADMIN_USERNAME=ADMIN__ +Environment=ADMIN_PASS=__PASSWORD__ +Environment=ADMIN_EMAIL=__EMAIL__ [Install] WantedBy=multi-user.target diff --git a/manifest.json b/manifest.json index 944f3a9..b844a0f 100644 --- a/manifest.json +++ b/manifest.json @@ -39,10 +39,18 @@ "example": "/rocketchat", "default": "/rocketchat" }, + { + "name": "admin", + "type": "user" + }, { "name": "is_public", "type": "boolean", "default": true + }, + { + "name": "password", + "type": "password", } ] }