aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-10-29 09:25:57 +0300
committerSergey Poznyakoff <gray@gnu.org>2021-10-29 09:25:57 +0300
commit89e9a81590dff60594a0c0da5785d4794f17974d (patch)
treec8cb1ad5868cdf784ebaf1cc4d472f00b67be239
parent2b45f0e3534fed8b5c0d530d7f12898e18cfeb74 (diff)
downloadmicron-89e9a81590dff60594a0c0da5785d4794f17974d.tar.gz
micron-89e9a81590dff60594a0c0da5785d4794f17974d.tar.bz2
Version 1.3v1.3
-rw-r--r--NEWS4
-rw-r--r--README11
-rw-r--r--configure.ac3
-rw-r--r--src/crontab.c5
-rw-r--r--src/micrond.c11
5 files changed, 25 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 0a1ea0c..1521e9a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,9 @@
-micron -- history of user-visible changes. 2021-10-28
+micron -- history of user-visible changes. 2021-10-29
See the end of file for copying conditions.
Please send micron bug reports to <gray@gnu.org>
-Version 1.2.90 (git)
+Version 1.3, 2021-10-29
* Appending cronjob output to a file
diff --git a/README b/README
index 2992522..e4ea49d 100644
--- a/README
+++ b/README
@@ -295,6 +295,17 @@ slighly more than 2 minutes.
It was thought to be a MInimal CRON implementation. Turned out the
other way.
+* Bug reporting.
+
+Send bug reports to <gray@gnu.org.ua>. Make sure to mention "micron"
+in the subject.
+
+You can also use bug-tracker at
+
+ https://puszcza.gnu.org.ua/bugs/?group=micron
+
+(requires authorization).
+
* References
The complete micron documentation in varions is available from
diff --git a/configure.ac b/configure.ac
index f4afbcf..aceb408 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,8 @@
# with micron. If not, see <http://www.gnu.org/licenses/>. */
AC_PREREQ(2.63)
-AC_INIT([micron],[1.2.90],[gray@gnu.org.ua])
+AC_INIT([micron],[1.3],[gray@gnu.org.ua],[micron],
+ [https://www.gnu.org.ua/software/micron])
AC_CONFIG_SRCDIR([src/micron.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADER([config.h])
diff --git a/src/crontab.c b/src/crontab.c
index 4383bdd..757422e 100644
--- a/src/crontab.c
+++ b/src/crontab.c
@@ -146,8 +146,11 @@ usage(int ex)
fprintf(fp, " -V print program version and exit\n");
fprintf(fp, "\n");
fprintf(fp, "If none of [-ehlrV] options given, replaces the crontab with the"
- " content of FILE.\n");
+ " content of\n");
+ fprintf(fp, "FILE.\n");
fprintf(fp, "\n");
+ fprintf(fp, "Report bugs to <%s>.\n", PACKAGE_BUGREPORT);
+ fprintf(fp, "Micron home page: <%s>.\n", PACKAGE_URL);
exit(ex);
}
diff --git a/src/micrond.c b/src/micrond.c
index e3d1edf..d912cc3 100644
--- a/src/micrond.c
+++ b/src/micrond.c
@@ -283,7 +283,7 @@ static void
usage(void)
{
printf("usage: %s [-fhNSsVv] [-g [no]GROUP[=DIR]] [-l PRI] [-m MAILER] [-p DEV] [-v NAME=VALUE] [-W OPT]\n", progname);
- printf("A cron deamon\n");
+ printf("A cron daemon\n");
printf("\nOPTIONS:\n\n");
printf(" -F FACILITY log cronjobs output to this facility (implies -s)\n");
printf(" -f remain in foreground\n");
@@ -299,20 +299,21 @@ usage(void)
printf(" -T N when logging to stderr, add timestamp (0 - ISO 8601,\n");
printf(" 1 - ISO 8601 without seconds, 2 - ISO 8601 without seconds\n");
printf(" and minutes)\n");
- printf(" -t SECONDS time to wait for the cronjobs to terminate after\n"
- " sending them the SIGTERM signal before stopping\n"
- " micrond\n");
+ printf(" -t SECONDS time to wait for cronjobs to terminate after sending them\n");
+ printf(" the SIGTERM signal\n");
printf(" -v NAME=VALUE assign initial VALUE to the internal variable NAME\n");
printf(" -W OPT set cron option\n");
printf("\n");
printf(" -h print this help text\n");
printf(" -V print program version and exit\n");
printf("\n");
- printf("Valid crontab groups are: master, system, user, and group.\n\n");
+ printf("Valid crontab GROUP names are: master, system, user, and group.\n\n");
printf("Syslog SOCKET can be either an absolute name of a UNIX socket or\n");
printf("a host name or IPv4 address optionally followed by a colon and port\n");
printf("number or service name.\n");
printf("\n");
+ printf("Report bugs to <%s>.\n", PACKAGE_BUGREPORT);
+ printf("Micron home page: <%s>.\n", PACKAGE_URL);
}
void

Return to:

Send suggestions and report system problems to the System administrator.