From 6c6f234681ba589e2ea5ba046f063d36b11b00ad Mon Sep 17 00:00:00 2001 From: Olaf Conradi Date: Mon, 24 Aug 2015 19:19:27 +0200 Subject: [PATCH] Add module cowbuilder --- modules/cowbuilder/README.md | 48 ++++++++++++++++++++++++ modules/cowbuilder/functions/cb-shell | 53 +++++++++++++++++++++++++++ modules/cowbuilder/init.zsh | 8 ++++ 3 files changed, 109 insertions(+) create mode 100644 modules/cowbuilder/README.md create mode 100644 modules/cowbuilder/functions/cb-shell create mode 100644 modules/cowbuilder/init.zsh diff --git a/modules/cowbuilder/README.md b/modules/cowbuilder/README.md new file mode 100644 index 00000000..e0ad2bc7 --- /dev/null +++ b/modules/cowbuilder/README.md @@ -0,0 +1,48 @@ +Cowbuilder +========== + +Start interactive cowbuilder session for debugging purposes. +It allows for easy entering and saving changes in the chroots. + +The shell function `cb-shell` is based on the notes from the +[Debian packaging symposium][1]. + +Cowbuilder is started using sudo with the option to preserve the +environment. This allows one to configure cowbuilder and pbuilder +using *~/.pbuilderrc*. + +Aliases +------- + +- `cb-shell-save` start `cb-shell` and saves changes on exit. + +Functions +--------- + +- `cb-shell` start shell inside cowbuilder chroot. + +Examples +-------- + +Start cowbuilder for distribution jessie. +When environment variable `DIST` is present, the `-d` argument can be +omitted. + + $ cb-shell -d jessie + $ DIST=jessie cb-shell + +To make changes persistent start the cowbuilder shell with +option `-s` or use the alias `cb-shell-save`. + + $ cb-shell -d jessie -s + $ cb-shell-save -d jessie + +Authors +------- + +*The authors of this module should be contacted via the [issue tracker][2].* + + - [Olaf Conradi](https://github.com/oohlaf) + +[1]: http://jpvanoosten.nl/blog/2012/12/22/notes-from-the-debian-packaging-symposium/ +[2]: https://github.com/sorin-ionescu/prezto/issues diff --git a/modules/cowbuilder/functions/cb-shell b/modules/cowbuilder/functions/cb-shell new file mode 100644 index 00000000..77ddfcf9 --- /dev/null +++ b/modules/cowbuilder/functions/cb-shell @@ -0,0 +1,53 @@ +local path_pbuilder usage opt_dist opt_safe cb_opt + +: ${path_pbuilder:=/var/cache/pbuilder} + +usage="$( +cat <&2 + print "$usage" >&2 + return 1 + ;; + \?) print "$0: unknown option: $OPTARG" >&2 + print "$usage" >&2 + return 1 + ;; + esac +done +shift $(( $OPTIND - 1 )) + +if [[ -n $opt_safe ]]; then + cb_opt=$opt_safe "$@" +else + cb_opt="$@" +fi + +sudo -E cowbuilder \ + --bindmount $HOME \ + --login \ + --basepath=${path_pbuilder}/base${opt_dist}.cow $cb_opt diff --git a/modules/cowbuilder/init.zsh b/modules/cowbuilder/init.zsh new file mode 100644 index 00000000..78b11d3a --- /dev/null +++ b/modules/cowbuilder/init.zsh @@ -0,0 +1,8 @@ +# +# Helper to start inter-active shell session within cowbuilder chroots. +# +# Author: +# Olaf Conradi +# + +alias cb-shell-save='cb-shell -s'