Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
farinspace committed Dec 1, 2013
2 parents 20520b4 + 67fdd1b commit 141ae7a
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 11 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Ubuntu server setups

These are bash scripts to help setup and configure a fresh Ubuntu server install (primarily tested on Rackspace server instances).

```
sudo apt-get install git-core
git clone https://github.com/farinspace/linux-setups.git
```
9 changes: 0 additions & 9 deletions exim-install.sh

This file was deleted.

20 changes: 20 additions & 0 deletions exim4-install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash

apt-get -yq install exim4 exim4-config

echo ""

echo "Run \"dpkg-reconfigure exim4-config\" to configure"

echo "Run \"vim /etc/exim4/update-exim4.conf.conf\" to check configuration"

echo "Run \"vim /etc/exim4/passwd.client\" to edit smarthost login"

echo "Run \"vim /etc/mailname\" to configure"

echo "Run \"update-exim4.conf\" to generate exim4 master configuration file"

echo "Run \"service exim4 restart\" to restart exim4"

echo ""

1 change: 1 addition & 0 deletions svn/multiple-sample.up.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ if [ -f $FILE ];
then
source "$FILE"
fi

9 changes: 7 additions & 2 deletions svn/sample.up.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ DIR='/var/www/project/html'

SVNURL='svn://svn.farinspace.net/dimas/project'

WEBUSER='wwww-data'
WEBUSER='www-data'

CURRENT="$( cd "$( dirname "$0" )" && pwd )"

source "$CURRENT/up.sh"
FILE="$CURRENT/up.sh"
if [ -f $FILE ];
then
source "$FILE"
fi

Empty file modified svn/up.sh
100644 → 100755
Empty file.

0 comments on commit 141ae7a

Please sign in to comment.