/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to dracut-module/password-agent.c

  • Committer: Teddy Hogeborn
  • Date: 2019-08-05 14:31:51 UTC
  • Revision ID: teddy@recompile.se-20190805143151-lt5d97wqif3t8250
Client: Debian package fix: Make uninstall when using dracut(8) work

Use the same logic to rebuild the initramfs image when uninstalling as
when installing the package.

* debian/mandos-client.postrm (update_initramfs): Use the same logic
  as the update_initramfs function in debian/mandos-client.postinst.

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
  mono_microsecs next_run;
149
149
} __attribute__((designated_init)) task_queue;
150
150
 
151
 
/* "task_func" - A function type for task functions
 
151
/* "func_type" - A function type for task functions
152
152
 
153
153
   I.e. functions for the code which runs when a task is run, all have
154
154
   this type */
8092
8092
  g_option_context_set_help_enabled(context, FALSE);
8093
8093
  g_option_context_set_ignore_unknown_options(context, TRUE);
8094
8094
 
8095
 
  gboolean should_run_tests = FALSE;
 
8095
  gboolean run_tests = FALSE;
8096
8096
  GOptionEntry entries[] = {
8097
8097
    { "test", 0, 0, G_OPTION_ARG_NONE,
8098
 
      &should_run_tests, "Run tests", NULL },
 
8098
      &run_tests, "Run tests", NULL },
8099
8099
    { NULL }
8100
8100
  };
8101
8101
  g_option_context_add_main_entries(context, entries, NULL);
8108
8108
  }
8109
8109
 
8110
8110
  g_option_context_free(context);
8111
 
  return should_run_tests != FALSE;
 
8111
  return run_tests != FALSE;
8112
8112
}