Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/novnc/files/
Date: Sat, 25 Apr 2020 16:02:37
Message-Id: 1587830540.bc6fb37b4e2e69be175c15855f62d91691a1beed.prometheanfire@gentoo
1 commit: bc6fb37b4e2e69be175c15855f62d91691a1beed
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Apr 25 15:53:59 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 25 16:02:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6fb37b
7
8 www-apps/novnc: remove unused files
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 www-apps/novnc/files/noVNC.confd | 4 ----
15 www-apps/novnc/files/noVNC.initd | 30 ------------------------------
16 2 files changed, 34 deletions(-)
17
18 diff --git a/www-apps/novnc/files/noVNC.confd b/www-apps/novnc/files/noVNC.confd
19 deleted file mode 100644
20 index 50ddb5cc3e5..00000000000
21 --- a/www-apps/novnc/files/noVNC.confd
22 +++ /dev/null
23 @@ -1,4 +0,0 @@
24 -FLAG_FILE=/etc/nova/nova.conf
25 -WEB_ROOT=/opt/noVNC
26 -LOG_PATH=/var/log/noVNC
27 -CERT_FILE=/opt/noVNC/self.pem
28
29 diff --git a/www-apps/novnc/files/noVNC.initd b/www-apps/novnc/files/noVNC.initd
30 deleted file mode 100644
31 index 93d87486ad4..00000000000
32 --- a/www-apps/novnc/files/noVNC.initd
33 +++ /dev/null
34 @@ -1,30 +0,0 @@
35 -#!/sbin/openrc-run
36 -# Copyright 1999-2013 Gentoo Foundation
37 -# Distributed under the terms of the GNU General Public License v2
38 -#
39 -# Author: Cor Cornelisse <corcornelisse@×××××.com>
40 -
41 -pidfile="/var/run/${SVCNAME}.pid"
42 -command="/usr/bin/nova-novncproxy"
43 -command_args="--flagfile=${FLAG_FILE} --cert=${CERT_FILE} --web ${WEB_ROOT}"
44 -command_background="yes"
45 -start_stop_daemon_args="--stdout ${LOG_PATH}/${SVCNAME}.log --stderr ${LOG_PATH}/${SVCNAME}.err"
46 -
47 -
48 -depend() {
49 - need net
50 -}
51 -
52 -checkconfig() {
53 - checkpath -d -m 0750 /var/log/noVNC
54 - if [ ! -r /etc/conf.d/${SVCNAME} ]; then
55 - eerror "No config file found: /etc/conf.d/${SVCNAME}"
56 - return 1
57 - fi
58 - return 0
59 -}
60 -
61 -
62 -start_pre() {
63 - checkconfig || return $?
64 -}