Merge pull request #564 from jstaffans/master

Move querydsl-devops to devops, fix Oracle permissions
This commit is contained in:
Timo Westkämper 2013-11-18 05:17:31 -08:00
commit 327da050b0
9 changed files with 12 additions and 11 deletions

16
.gitignore vendored
View File

@ -8,11 +8,11 @@ test-output
/.metadata
.cache
derby.log
/querydsl-devops/.tmp
/querydsl-devops/.librarian
/querydsl-devops/.vagrant
/querydsl-devops/Puppetfile.lock
/querydsl-devops/modules
/querydsl-devops/*.rpm.zip
/querydsl-devops/**/*.semaphore
/querydsl-devops/test-connection/.lein-repl-history
/devops/.tmp
/devops/.librarian
/devops/.vagrant
/devops/Puppetfile.lock
/devops/modules
/devops/*.rpm.zip
/devops/**/*.semaphore
/devops/test-connection/.lein-repl-history

View File

@ -39,12 +39,12 @@ For running tests, a Vagrant/Puppet setup is provided. It is based on Ubuntu 12.
You will need to install [VirtualBox], [Puppet], [Vagrant], the [vagrant-vbguest] plugin and [librarian-puppet]. You will also need to
download the Oracle XE 11g installer file (```oracle-xe-11.2.0-1.0.x86_64.rpm.zip```) manually and
place it in the ```querydsl-devops``` directory.
place it in the ```devops``` directory.
To launch the virtual machine:
```
$> cd querydsl-devops
$> cd devops
devops$> librarian-puppet install
devops$> vagrant up
```

View File

@ -1,4 +1,5 @@
CREATE USER querydsl IDENTIFIED BY querydsl;
GRANT CREATE SESSION TO querydsl;
GRANT CREATE TABLE TO querydsl;
GRANT unlimited tablespace TO querydsl;
GRANT unlimited tablespace TO querydsl;
GRANT resource TO querydsl;