summaryrefslogtreecommitdiffstats
path: root/core/modules/iptables/module.build
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/iptables/module.build')
-rw-r--r--core/modules/iptables/module.build20
1 files changed, 20 insertions, 0 deletions
diff --git a/core/modules/iptables/module.build b/core/modules/iptables/module.build
new file mode 100644
index 00000000..4012ec43
--- /dev/null
+++ b/core/modules/iptables/module.build
@@ -0,0 +1,20 @@
+#!/bin/bash
+fetch_source() {
+ :
+}
+
+build() {
+ local BIN_LOCATION
+ for BIN in $REQUIRED_BINARIES; do
+ BIN_LOCATION="$(which ${BIN})"
+ pinfo "$BIN_LOCATION"
+ if [ -z "$BIN_LOCATION" ]; then
+ perror "'$BIN' not found on the system. Install it."
+ fi
+ tarcopy "$(get_link_chain ${BIN_LOCATION})" "${MODULE_BUILD_DIR}"
+ done
+}
+
+post_copy() {
+ :
+}