From 5e6c2f2cd09626704803c890d2dc2d706ec68ffd Mon Sep 17 00:00:00 2001 From: Benoit Page-Guitard Date: Mon, 18 Jul 2016 03:28:48 -0400 Subject: [PATCH] app-admin/etcd-wrapper: Added missing newline escape This was preventing arguments supplied to etcd-wrapper from being passed on to etcd, as well as preventing specifying a custom exec command for the ACI --- ...tcd-wrapper-0.0.1-r0.ebuild => etcd-wrapper-0.0.2-r0.ebuild} | 0 .../coreos-overlay/app-admin/etcd-wrapper/files/etcd-wrapper | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/{etcd-wrapper-0.0.1-r0.ebuild => etcd-wrapper-0.0.2-r0.ebuild} (100%) diff --git a/sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/etcd-wrapper-0.0.1-r0.ebuild b/sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/etcd-wrapper-0.0.2-r0.ebuild similarity index 100% rename from sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/etcd-wrapper-0.0.1-r0.ebuild rename to sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/etcd-wrapper-0.0.2-r0.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/files/etcd-wrapper b/sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/files/etcd-wrapper index 657a9e526b..d56fded9c8 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/files/etcd-wrapper +++ b/sdk_container/src/third_party/coreos-overlay/app-admin/etcd-wrapper/files/etcd-wrapper @@ -71,6 +71,6 @@ exec ${RKT} ${RKT_GLOBAL_ARGS} \ \ ${RKT_STAGE1_ARG} \ ${ETCD_IMG} ${ETCD_IMG_ARGS} \ - --user=$(id -u ${ETCD_IMG_USER}) + --user=$(id -u ${ETCD_IMG_USER}) \ --exec=${ETCD_IMG_EXEC} -- \ "$@"