rename contents in data/
This commit is contained in:
parent
b8a86b095d
commit
f2bfe7b3d4
@ -13,8 +13,8 @@ https=false
|
||||
port=4444
|
||||
|
||||
[SSL-Configuration]
|
||||
certificate=/etc/ssl/certs/guhd-certificate.crt
|
||||
certificate-key=/etc/ssl/private/guhd-certificate.key
|
||||
certificate=/etc/ssl/certs/nymead-certificate.crt
|
||||
certificate-key=/etc/ssl/private/nymead-certificate.key
|
||||
|
||||
[GPIO]
|
||||
rf433rx=27
|
||||
@ -2,19 +2,19 @@
|
||||
* *
|
||||
* Copyright (C) 2018 Simon Stürz <simon.stuerz@guh.io> *
|
||||
* *
|
||||
* This file is part of guh. *
|
||||
* This file is part of nymea. *
|
||||
* *
|
||||
* Guh is free software: you can redistribute it and/or modify *
|
||||
* nymea is free software: you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation, version 2 of the License. *
|
||||
* *
|
||||
* Guh is distributed in the hope that it will be useful, *
|
||||
* nymea is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU General Public License *
|
||||
* along with guh. If not, see <http://www.gnu.org/licenses/>. *
|
||||
* along with nymea. If not, see <http://www.gnu.org/licenses/>. *
|
||||
* *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
@ -63,7 +63,7 @@ button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.guh-main-logo {
|
||||
.nymea-main-logo {
|
||||
left: 0;
|
||||
height: 85px;
|
||||
min-height: 85px;
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
#! /bin/sh
|
||||
|
||||
### BEGIN INIT INFO
|
||||
# Provides: guhd
|
||||
# Provides: nymead
|
||||
# Required-Start: $remote_fs $syslog
|
||||
# Required-Stop: $remote_fs $syslog
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: guh daemon
|
||||
# Description: guh is an open source home automation server, which allows to
|
||||
# Short-Description: nymea daemon
|
||||
# Description: nymea is an open source home automation server, which allows to
|
||||
# control a lot of different devices from many different manufacturers.
|
||||
#
|
||||
### END INIT INFO
|
||||
@ -16,19 +16,19 @@
|
||||
# #
|
||||
# Copyright (C) 2015 Simon Stuerz <simon.stuerz@guh.guru> #
|
||||
# #
|
||||
# This file is part of guh. #
|
||||
# This file is part of nymea. #
|
||||
# #
|
||||
# guh is free software: you can redistribute it and/or modify #
|
||||
# nymea is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation, version 2 of the License. #
|
||||
# #
|
||||
# guh is distributed in the hope that it will be useful, #
|
||||
# nymea is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with guh. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# along with nymea. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||
|
||||
@ -38,8 +38,8 @@
|
||||
|
||||
# PATH should only include /usr/* if it runs after the mountnfs.sh script
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
||||
DESC="guh daemon"
|
||||
NAME=guhd
|
||||
DESC="nymea daemon"
|
||||
NAME=nymead
|
||||
DAEMON=/usr/bin/$NAME
|
||||
PIDFILE=/var/run/$NAME.pid
|
||||
SCRIPTNAME=/etc/init.d/$NAME
|
||||
@ -1,4 +1,4 @@
|
||||
/var/log/guhd.log {
|
||||
/var/log/nymead.log {
|
||||
rotate 7
|
||||
daily
|
||||
dateext
|
||||
@ -1,11 +1,11 @@
|
||||
[Unit]
|
||||
Description=guhd - IoT server
|
||||
Description=nymead - IoT server
|
||||
Documentation=https://github.com/guh/guh/wiki
|
||||
After=network.target
|
||||
Wants=network-online.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/guhd -n --print-all
|
||||
ExecStart=/usr/bin/nymead -n --print-all
|
||||
StandardOutput=journal
|
||||
StandardError=journal
|
||||
Restart=on-failure
|
||||
@ -72,7 +72,7 @@ QByteArray DebugServerHandler::createDebugXmlDocument()
|
||||
writer.writeStartElement("h1");
|
||||
writer.writeEmptyElement("img");
|
||||
writer.writeAttribute("src", "/debug/logo.svg");
|
||||
writer.writeAttribute("class", "guh-main-logo");
|
||||
writer.writeAttribute("class", "nymea-main-logo");
|
||||
|
||||
//: The main title of the debug server interface
|
||||
writer.writeCharacters(QCoreApplication::translate("main", "nymea debug interface"));
|
||||
|
||||
Reference in New Issue
Block a user