Skip to content

Commit

Permalink
Prepare to release 1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
snabb committed May 24, 2016
1 parent e91c0fe commit 2ac20ab
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
Copyright (c) 2009-2016 Janne Snabb. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
@@ -1,7 +1,7 @@
#
# Makefile.am
#
# Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
# Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
#
# This software is licensed under the terms and conditions of the
# Simplified BSD License. You should have received a copy of that
Expand Down
34 changes: 33 additions & 1 deletion NEWS
Expand Up @@ -2,6 +2,39 @@

version history

version 1.0 released 2016-05-24

- This is mainly a maintenance release. There are no significant new
features. The software appears to be so stable that it is the time to
release 1.0 now.

- Add downtimed(8) command line option -F for enabling seamless
operation with modern system service supervisors such as systemd(8) and
others. This option disables calling daemon(3) and thus fork(2)ing into
the background. In systemd(8) terminology this is a [Service] Type=
"simple".

- Eliminate #ifndef __APPLE__ in the code. OS X users must now add the -F
option described above to their downtimed(8) launchd(8) configuration.
The example configuration startup-scripts/com.epipe.downtimed.plist was
updated accordingly.

- Add systemd.service(5) file in startup-scripts/downtimed.service.

- Add -f command line option to usage help strings. Reported and a patch
supplied by Mats Erik Andersson. Thanks!

- Update autotools produced scripts, build-aux.

- Moved code hosting from Launchpad to GitHub. The new location is:

https://github.com/snabb/downtimed

Also README was changed to README.md.

- Miscellaneous minor improvements and changes in the documentation.


version 0.6 released 2013-07-27

- Added startup scripts for Debian, Red Hat (RHEL/Fedora/Scientific
Expand Down Expand Up @@ -117,4 +150,3 @@ version 0.1 released 2010-05-22

- initial release

/* eof */
4 changes: 2 additions & 2 deletions configure.ac
@@ -1,15 +1,15 @@
#
# configure.ac
#
# Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
# Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
#
# This software is licensed under the terms and conditions of the
# Simplified BSD License. You should have received a copy of that
# license along with this software.
#

AC_PREREQ(2.65)
AC_INIT([downtimed],[0.6],[],[],[https://dist.epipe.com/downtimed/])
AC_INIT([downtimed],[1.0],[],[],[https://dist.epipe.com/downtimed/])
AC_CONFIG_SRCDIR([downtimed.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([build-aux])
Expand Down
6 changes: 3 additions & 3 deletions downtimed.8
@@ -1,11 +1,11 @@
.\"-
.\" Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
.\" Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
.\"
.\" This software is licensed under the terms and conditions of the
.\" Simplified BSD License. You should have received a copy of that
.\" license along with this software.
.\"
.TH DOWNTIMED 8 "2013-07-27" "version 0.6"
.TH DOWNTIMED 8 "2016-05-24" "version 1.0"
.SH NAME
downtimed \- system downtime monitoring and reporting daemon
.SH SYNOPSIS
Expand Down Expand Up @@ -127,7 +127,7 @@ Reporting is inaccurate if the system clock changes during system
downtime or startup process. Daylight saving time changes have no
effect as all calculations are done using UTC.
.SH COPYRIGHT
Copyright \(co 2009\-2013 Janne Snabb. All rights reserved.
Copyright \(co 2009\-2016 Janne Snabb. All rights reserved.
.PP
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down
4 changes: 2 additions & 2 deletions downtimed.c
@@ -1,5 +1,5 @@
/*-
* Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
* Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -703,7 +703,7 @@ version()

puts(PROGNAME " " PROGVERSION " - system downtime reporting daemon\n");

puts("Copyright (c) 2009-2013 Janne Snabb. "
puts("Copyright (c) 2009-2016 Janne Snabb. "
"All rights reserved.");

puts("This software is licensed under the terms and conditions of the");
Expand Down
2 changes: 1 addition & 1 deletion downtimedb.c
@@ -1,5 +1,5 @@
/*-
* Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
* Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down
2 changes: 1 addition & 1 deletion downtimedb.h
@@ -1,5 +1,5 @@
/*-
* Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
* Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down
6 changes: 3 additions & 3 deletions downtimes.1
@@ -1,11 +1,11 @@
.\"-
.\" Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
.\" Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
.\"
.\" This software is licensed under the terms and conditions of the
.\" Simplified BSD License. You should have received a copy of that
.\" license along with this software.
.\"
.TH DOWNTIMES 1 "2013-07-27" "version 0.6"
.TH DOWNTIMES 1 "2016-05-24" "version 1.0"
.SH NAME
downtimes \- display system downtime records made by
.BR downtimed (8)
Expand Down Expand Up @@ -91,7 +91,7 @@ https://dist.epipe.com/downtimed/
The reporting accuracy in case of a system crash depends on how often the
time stamp is updated.
.SH COPYRIGHT
Copyright \(co 2009\-2013 Janne Snabb. All rights reserved.
Copyright \(co 2009\-2016 Janne Snabb. All rights reserved.
.PP
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down
4 changes: 2 additions & 2 deletions downtimes.c
@@ -1,5 +1,5 @@
/*-
* Copyright (c) 2009-2013 Janne Snabb. All rights reserved.
* Copyright (c) 2009-2016 Janne Snabb. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -202,7 +202,7 @@ version()
puts(PROGNAME " " PROGVERSION " - display system downtime records "
"made by downtimed(8)\n");

puts("Copyright (c) 2009-2013 Janne Snabb. "
puts("Copyright (c) 2009-2016 Janne Snabb. "
"All rights reserved.");

puts("This software is licensed under the terms and conditions of the");
Expand Down

0 comments on commit 2ac20ab

Please sign in to comment.