diff options
Diffstat (limited to 'infest/core')
-rwxr-xr-x | infest/core/angstrom | 4 | ||||
-rwxr-xr-x | infest/core/debian | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/infest/core/angstrom b/infest/core/angstrom new file mode 100755 index 00000000..dafb840f --- /dev/null +++ b/infest/core/angstrom @@ -0,0 +1,4 @@ +#!/bin/sh + +opkg install vim vim-syntax +opkg install git diff --git a/infest/core/debian b/infest/core/debian new file mode 100755 index 00000000..fedd1ede --- /dev/null +++ b/infest/core/debian @@ -0,0 +1,6 @@ +#!/bin/sh +set -x +[ `which git` ] || apt-get install --yes git-core +[ `which tmux` ] || apt-get install --yes tmux +[ `which screen` ] && apt-get remote --yes screen +[ `which vim` ] || apt-get install --yes vim |