diff options
author | Henrik Riomar <henrik.riomar@gmail.com> | 2017-12-29 21:10:44 +0100 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-01-03 14:20:58 +0200 |
commit | 23cb10477537a2bbf40ac06a61046f75f2b160c5 (patch) | |
tree | 2a9f983f1e03ee1becb32783b57bf5e90fb2e9c8 /src/apk.c | |
parent | 99e7bb93dfff2f43987b81ce7600ad8fbd0ce64c (diff) | |
download | apk-tools-23cb10477537a2bbf40ac06a61046f75f2b160c5.tar.gz apk-tools-23cb10477537a2bbf40ac06a61046f75f2b160c5.tar.bz2 apk-tools-23cb10477537a2bbf40ac06a61046f75f2b160c5.tar.xz apk-tools-23cb10477537a2bbf40ac06a61046f75f2b160c5.zip |
add new flag --no-commit-hooks
This flag skips running hook scripts
This flag *must* be used during initramfs tmpfs initial install.
The reason that this new flag is needed is that the hooks will currently
always fail as musl and /bin/sh is missing at this stage on diskless.
Diffstat (limited to 'src/apk.c')
-rw-r--r-- | src/apk.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -217,6 +217,9 @@ static int option_parse_commit(void *ctx, struct apk_db_options *dbopts, int opt case 0x113: apk_flags |= APK_NO_SCRIPTS; break; + case 0x117: + apk_flags |= APK_NO_COMMIT_HOOKS; + break; default: return -ENOTSUP; } @@ -228,6 +231,7 @@ static const struct apk_option options_commit[] = { { 0x102, "clean-protected", "Do not create .apk-new files in configuration dirs" }, { 0x111, "overlay-from-stdin", "Read list of overlay files from stdin" }, { 0x113, "no-scripts", "Do not execute any scripts" }, + { 0x117, "no-commit-hooks", "Skip pre/post hook scripts (but not other scripts)" }, }; const struct apk_option_group optgroup_commit = { |