From ebab2fa01356b7ad58fd609bacdf91fe87bdf565 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Sun, 23 Jun 2013 14:31:40 -0400 Subject: [PATCH] fix(sys-apps/efunctions): Fix INSTALL_MASK to remove init.d When installing with the default make.conf in full effect /etc/init.d/functions.sh will be excluded which is the whole point of the efunctions package in the first place. This should fix that. --- .../coreos-overlay/coreos/config/env/sys-apps/efunctions | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/efunctions diff --git a/sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/efunctions b/sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/efunctions new file mode 100644 index 0000000000..14e19ac0dc --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-apps/efunctions @@ -0,0 +1,3 @@ +# Don't filter out /etc/init.d/functions.sh +PKG_INSTALL_MASK="${PKG_INSTALL_MASK/\/etc\/init.d}" +INSTALL_MASK="${INSTALL_MASK/\/etc\/init.d}"