1 /* 2 * Copyright 2010 Senko Rasic <senko.rasic@dobarkod.hr> 3 * Copyright 2010 Ante Karamatic <ivoks@init.hr> 4 * Later changes copyright 2012-2021 the Pacemaker project contributors 5 * 6 * The version control history for this file may have further details. 7 * 8 * This source code is licensed under the GNU Lesser General Public License 9 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY. 10 */ 11 #ifndef UPSTART__H 12 # define UPSTART__H 13 14 # include <glib.h> 15 # include "crm/services.h" 16 17 G_GNUC_INTERNAL GList *upstart_job_listall(void); 18 G_GNUC_INTERNAL gboolean upstart_job_exec(svc_action_t * op); 19 G_GNUC_INTERNAL gboolean upstart_job_exists(const gchar * name); 20 G_GNUC_INTERNAL void upstart_cleanup(void); 21 22 #endif /* UPSTART__H */