</varlistentry>
<varlistentry>
- <term><varname>change-update-summary</varname></term>
+ <term><varname>auto-update-summary</varname></term>
<listitem><para>Boolean value controlling whether or not to
automatically update the summary file after any ref is added,
removed, or updated. This covers a superset of the cases covered by
return FALSE;
g_clear_pointer (&self->txn.collection_refs, g_hash_table_destroy);
- /* Update the summary if change-update-summary is set, because doing so was
+ /* Update the summary if auto-update-summary is set, because doing so was
* delayed for each ref change during the transaction.
*/
if (!_ostree_repo_maybe_regenerate_summary (self, cancellable, error))
*
* It is regenerated automatically after a commit if
* `core/commit-update-summary` is set, and automatically after any ref is
- * added, removed, or updated if `core/change-update-summary` is set.
+ * added, removed, or updated if `core/auto-update-summary` is set.
*
* If the `core/collection-id` key is set in the configuration, it will be
* included as %OSTREE_SUMMARY_COLLECTION_ID in the summary file. Refs that
return TRUE;
}
-/* Regenerate the summary if `core/change-update-summary` is set */
+/* Regenerate the summary if `core/auto-update-summary` is set */
gboolean
_ostree_repo_maybe_regenerate_summary (OstreeRepo *self,
GCancellable *cancellable,
GError **error)
{
- gboolean update_summary;
+ gboolean auto_update_summary;
if (!ot_keyfile_get_boolean_with_default (self->config, "core",
- "change-update-summary", FALSE,
- &update_summary, error))
+ "auto-update-summary", FALSE,
+ &auto_update_summary, error))
return FALSE;
- if (update_summary && !ostree_repo_regenerate_summary (self,
- NULL,
- cancellable,
- error))
+ if (auto_update_summary &&
+ !ostree_repo_regenerate_summary (self, NULL, cancellable, error))
return FALSE;
return TRUE;
if (!skip_commit)
{
guint64 timestamp;
- gboolean change_update_summary;
+ gboolean auto_update_summary;
if (!opt_no_bindings)
{
goto out;
if (!ot_keyfile_get_boolean_with_default (ostree_repo_get_config (repo), "core",
- "change-update-summary", FALSE,
- &change_update_summary, error))
+ "auto-update-summary", FALSE,
+ &auto_update_summary, error))
goto out;
/* No need to update it again if we did for each ref change */
- if (opt_orphan || !change_update_summary)
+ if (opt_orphan || !auto_update_summary)
{
gboolean commit_update_summary;
$OSTREE summary --update
assert_not_has_file repo/summary.sig
-# Check that without change-update-summary set, adding, changing, or deleting a ref doesn't update the summary
+# Check that without auto-update-summary set, adding, changing, or deleting a ref doesn't update the summary
$OSTREE summary --update
OLD_MD5=$(md5sum repo/summary)
$OSTREE commit -b test2 -s "A commit" test
assert_streq "$OLD_MD5" "$(md5sum repo/summary)"
-# Check that with change-update-summary set, adding, changing, or deleting a ref updates the summary
-$OSTREE --repo=repo config set core.change-update-summary true
+# Check that with auto-update-summary set, adding, changing, or deleting a ref updates the summary
+$OSTREE --repo=repo config set core.auto-update-summary true
$OSTREE summary --update
OLD_MD5=$(md5sum repo/summary)