aboutsummaryrefslogtreecommitdiff
path: root/include/delivery.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-12-07 19:53:44 -0500
committerGitHub <noreply@github.com>2024-12-07 19:53:44 -0500
commit456c5a481a7dabb53434a696488ac6eecb962d5b (patch)
tree8f4743a4cfdad61f9aeac0dffce050e5bd9eef1d /include/delivery.h
parentbdadebfceffad22179b33948113b2bf82f02c1f7 (diff)
parent4c403d1f1318a163b017605c2af6d1a14c579f99 (diff)
downloadstasis-456c5a481a7dabb53434a696488ac6eecb962d5b.tar.gz
Merge pull request #74 from jhunkeler/with-indexer-tlc
Combined: indexer-tlc and clone-existing-directory
Diffstat (limited to 'include/delivery.h')
-rw-r--r--include/delivery.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/delivery.h b/include/delivery.h
index 2ab25d1..40ca3e6 100644
--- a/include/delivery.h
+++ b/include/delivery.h
@@ -424,6 +424,9 @@ int populate_mission_ini(struct Delivery **ctx, int render_mode);
void validate_delivery_ini(struct INIFILE *ini);
int filter_repo_tags(char *repo, struct StrList *patterns);
+
+#define DELIVERY_NOT_FOUND 0
+#define DELIVERY_FOUND 1
/**
* Determine whether a release on-disk matches the release name in use
* @param ctx Delivery context
@@ -433,4 +436,13 @@ int delivery_exists(struct Delivery *ctx);
int delivery_overlay_packages_from_env(struct Delivery *ctx, const char *env_name);
+/**
+ * Retrieve remote deliveries associated with the current version series
+ * @param ctx Delivery context
+ * @return -1 on error
+ * @return 1 on failure
+ * @return 0 on success
+ */
+int delivery_series_sync(struct Delivery *ctx);
+
#endif //STASIS_DELIVERY_H