Sha256: edfca96d0f5bbf2e642faad4808ad618942aef30e7d8009b6bc532f2027092d6
Contents?: true
Size: 1.39 KB
Versions: 6
Compression:
Stored size: 1.39 KB
Contents
#!/bin/sh # This file is part of EC2 on Rails. # http://rubyforge.org/projects/ec2onrails/ # # Copyright 2007 Paul Dowman, http://pauldowman.com/ # # EC2 on Rails is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # EC2 on Rails is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. make_dir() { mkdir -p $1 if [ $2 ] ; then chown -R $2 $1 fi } make_dir /mnt/app app:app #make sure it is setup to be able to be read/written by app user # Why have it owned (or even writeable) by app? Can't it just be owned by root and world readable? - Paul make_dir /etc/ec2onrails app:app make_dir /etc/ec2onrails/system_files app:app make_dir /mnt/log make_dir /mnt/log/fsck make_dir /mnt/log/god make_dir /mnt/log/mysql mysql:mysql make_dir /mnt/log/nginx nginx:nginx make_dir /mnt/log/varnish make_dir /mnt/varnish/ make_dir /mnt/tmp chmod 777 /mnt/tmp
Version data entries
6 entries across 6 versions & 3 rubygems