config: remove deprecated option 'utempter'

This commit is contained in:
Daniel Eklöf 2023-07-31 16:28:07 +02:00
parent 0b4f1b4af2
commit ddcbf2a7b4
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 5 additions and 18 deletions

View file

@ -1000,23 +1000,7 @@ parse_section_main(struct context *ctx)
else if (strcmp(key, "box-drawings-uses-font-glyphs") == 0)
return value_to_bool(ctx, &conf->box_drawings_uses_font_glyphs);
else if (strcmp(key, "utmp-helper") == 0 || strcmp(key, "utempter") == 0) {
if (strcmp(key, "utempter") == 0) {
struct user_notification deprecation = {
.kind = USER_NOTIFICATION_DEPRECATED,
.text = xasprintf(
"%s:%d: \033[1m[main].utempter\033[22m, "
"use \033[1m[main].utmp-helper\033[22m instead",
ctx->path, ctx->lineno),
};
tll_push_back(conf->notifications, deprecation);
LOG_WARN(
"%s:%d: [main].utempter is deprecated, "
"use [main].utmp-helper instead",
ctx->path, ctx->lineno);
}
else if (strcmp(key, "utmp-helper") == 0) {
if (!value_to_str(ctx, &conf->utmp_helper_path))
return false;