-
Notifications
You must be signed in to change notification settings - Fork 2
/
Changes
139 lines (76 loc) · 3.84 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
daemon-manager (1.2.2)
* Fixed logs not being created in their directories.
* Fixed not creating user config/log directories.
* Fixed HOME, LOGNAME, PATH not being able to be overridden by the config.
* Fixed HOME, LOGNAME not being the `run_as` user.
-- David Caldwell <[email protected]> Mon, 13 Feb 2023 02:15:11 -0800
daemon-manager (1.2.1)
* Small documentation change: forgot to document the `edit` command in
the `dmctl` man page.
-- David Caldwell <[email protected]> Fri, 10 Feb 2023 13:48:09 -0800
daemon-manager (1.2)
* Added `edit` command to dmctl to edit a daemon's config file.
* Added some configuration settings for daemon paths.
-- David Caldwell <[email protected]> Fri, 10 Feb 2023 03:12:34 -0800
daemon-manager (1.1.1)
* Fix Makefile so installing into a empty DESTDIR works (thanks James Cook)
-- David Caldwell <[email protected]> Tue, 02 Jun 2020 11:52:42 -0700
daemon-manager (1.1)
* Added `kill` command to dmctl to send signals to daemons.
-- David Caldwell <[email protected]> Fri, 08 Jun 2018 01:58:04 -0700
daemon-manager (1.0)
* Fix deadlock in signal handler.
* Fix race conditions that prevented error messages from displaying in
dmctl.
-- David Caldwell <[email protected]> Thu, 15 Oct 2015 19:06:36 -0700
daemon-manager (0.99.1)
* Fix the bash completion code. Awk will be the death of me.
-- David Caldwell <[email protected]> Sun, 09 Mar 2014 16:15:34 -0700
daemon-manager (0.99)
* Replaced individual command sockets with a single one in /var/run.
* Added "export ENV=value" syntax to daemon config file to set
environment variables.
* Added bash completion script.
-- David Caldwell <[email protected]> Sat, 08 Mar 2014 16:47:53 -0800
daemon-manager (0.98)
* Swapped command and daemon-id to match "service" param ordering.
* Removed sockfile daemon.conf option.
* Removed canonical name guessing based on prefix. It proved too
temperamental and is better served by bash completion (which doesn't
exist yet).
* Added "log" and "tail" commands to view a daemon's log file with
$PAGER/less/more/cat and "tail -f", respectively.
-- David Caldwell <[email protected]> Sun, 14 Jul 2013 22:39:14 -0700
daemon-manager (0.97)
* Fix buffer overflow on long error messages.
* Fix daemons' groups not getting set up right.
-- David Caldwell <[email protected]> Sun, 12 Aug 2012 15:18:25 -0700
daemon-manager (0.96)
* Fix reincarnation bug: don't re-daemonize on reincarnation.
-- David Caldwell <[email protected]> Sun, 13 Nov 2011 20:00:31 -0800
daemon-manager (0.95)
* SIGHUP now causes daemon-manager to re-exec itself, preserving its
state. This means that new versions can be transitioned to without
losing track of the daemons running under the old version.
* [runs_as] config section is now [can_run_as]. The old one is
deprecated. It works for now but warns.
* Errors and warnings in daemon config files now show up when you use
dmctl to mess with the daemon.
* "dmctl" with no arguments now does "status" instead of "help".
* Fixed dmctl response size limit of 1000 bytes (it's now unlimited).
* Fixed daemons that failed to start looking like they were actually
started.
* Fixed users with bad home directories causing daemon-manager to spin
and use 100% of the CPU.
-- David Caldwell <[email protected]> Sun, 13 Nov 2011 16:40:51 -0800
daemon-manager (0.9)
* Print elapsed times better in "dmctl status".
* Fixed dmclt to work when abbreviated daemon name was the same as the
user name.
* Made some error messages clearer.
* Fixed accept() not always working.
* Internal code cleanups.
-- David Caldwell <[email protected]> Mon, 07 Feb 2011 16:36:27 -0800
daemon-manager (0.8)
* First public release
-- David Caldwell <[email protected]> Wed, 27 Oct 2010 03:32:59 -0700