You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/bash
set -eux # -x for verbose logging to juju debug-log
apt-get update apt-get -y install bash-completion wget bzip2 git-core less language-pack-en python-software-properties tmux sudo git apt-get -y install mountall ## nasty nfs bug corrected
## ## Allows to mount nfs shares ##
apt-get -y install nfs-common
## ## etckeeper ##
apt-get install etckeeper
sed -i 's/#VCS="git"/VCS="git"/g' /etc/etckeeper/etckeeper.conf sed -i 's/VCS="bzr"/#VCS="bzr"/g' /etc/etckeeper/etckeeper.conf
etckeeper init
## ## Git utilities ##
echo "[alias] co = checkout com = commit st = status ci = commit
[color] branch = auto diff = auto interactive = auto status = auto
" >> /etc/gitconfig
## ## ldap client ##
## ## kal-scripts ##
cat <<EOF >> /etc/apt/sources.list
## vlab's shell libraries deb http://deb.kalysto.org no-dist kal-alpha kal-beta kal-main
EOF
|