diff options
| l--------- | arch-base-devel/clean.sh | 1 | ||||
| l--------- | arch-base-devel/create_image.sh | 1 | ||||
| l--------- | arch-base-devel/create_rootfs.sh | 1 | ||||
| -rwxr-xr-x | arch-base-devel/vars.sh | 9 |
4 files changed, 12 insertions, 0 deletions
diff --git a/arch-base-devel/clean.sh b/arch-base-devel/clean.sh new file mode 120000 index 0000000..1e93f10 --- /dev/null +++ b/arch-base-devel/clean.sh @@ -0,0 +1 @@ +../scripts/clean.sh
\ No newline at end of file diff --git a/arch-base-devel/create_image.sh b/arch-base-devel/create_image.sh new file mode 120000 index 0000000..ec69652 --- /dev/null +++ b/arch-base-devel/create_image.sh @@ -0,0 +1 @@ +../scripts/create_image.sh
\ No newline at end of file diff --git a/arch-base-devel/create_rootfs.sh b/arch-base-devel/create_rootfs.sh new file mode 120000 index 0000000..54a9807 --- /dev/null +++ b/arch-base-devel/create_rootfs.sh @@ -0,0 +1 @@ +../scripts/create_rootfs.sh
\ No newline at end of file diff --git a/arch-base-devel/vars.sh b/arch-base-devel/vars.sh new file mode 100755 index 0000000..052ea8f --- /dev/null +++ b/arch-base-devel/vars.sh @@ -0,0 +1,9 @@ +#!/bin/zsh + +HOSTNAME="arch-base-devel" + +PKGS=(coreutils binutils findutils sed gzip file util-linux) +PKGS_ADD=(awk gcc git grep make python2) +PKGS_REMOVED=() +IMAGE_NAME="sulhan/${HOSTNAME}" +IMAGE_ARGS=() |
