mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-08 16:05:05 -04:00
add vagrant support to etherpad-lite
This commit is contained in:
parent
beec69ac1c
commit
d99bb02d4b
7 changed files with 168 additions and 0 deletions
24
vagrant/puppet/ubuntu-bootstrap.sh
Normal file
24
vagrant/puppet/ubuntu-bootstrap.sh
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Quick bootstrap script for an Ubuntu Lucid host
|
||||
#
|
||||
# This allows you to bootstrap any Lucid box (VM, physical hardware, etc)
|
||||
# using Puppet and automatically install a full Etherpad environment on it.
|
||||
#
|
||||
|
||||
apt-get install git-core puppet rsync
|
||||
|
||||
GIT_REPO_URL="git://github.com/rhelmer/etherpad-lite.git"
|
||||
|
||||
mkdir /puppet
|
||||
|
||||
# Clone the project from github
|
||||
useradd etherpad
|
||||
su - etherpad
|
||||
mkdir dev
|
||||
cd dev
|
||||
git clone $GIT_REPO_URL etherpad
|
||||
exit
|
||||
|
||||
# Let puppet take it from here...
|
||||
puppet /home/etherpad/dev/puppet/manifests/*.pp
|
Loading…
Add table
Add a link
Reference in a new issue