This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://chrisadams.me.uk/2010/05/10/setting-up-a-centos-base-box-for-development-and-testing-with-vagrant/ | |
date > /etc/vagrant_box_build_time | |
cat > /etc/yum.repos.d/puppetlabs.repo << EOM | |
[puppetlabs] | |
name=puppetlabs | |
baseurl=http://stahnma.fedorapeople.org/puppetlabs/6/products/\$basearch | |
enabled=1 | |
gpgcheck=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feb 9, 2012 11:50:44 a.m. org.apache.catalina.core.ApplicationContext log | |
INFO: jolokia-agent: No access restrictor found at classpath:/jolokia-access.xml, access to all MBeans is allowed | |
Feb 9, 2012 11:50:44 a.m. org.apache.catalina.core.ApplicationContext log | |
SEVERE: StandardWrapper.Throwable | |
java.lang.ExceptionInInitializerError | |
at java.lang.Class.initializeClass(libgcj.so.10) | |
at java.lang.Class.newInstance(libgcj.so.10) | |
at org.jolokia.util.ServiceObjectFactory.createOrRemoveService(ServiceObjectFactory.java:137) | |
at org.jolokia.util.ServiceObjectFactory.readServiceDefinitionFromUrl(ServiceObjectFactory.java:96) | |
at org.jolokia.util.ServiceObjectFactory.readServiceDefinitions(ServiceObjectFactory.java:81) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Where does the flash disapear to!!!??? | |
# Routes | |
my $r = $self->routes; | |
$r->namespace("Ds::Controllers"); | |
# Normal route to controller | |
$r->route('/')->to('index#welcome' )->name('index'); | |
$r->route('/login')->to('auth#index' )->name('login'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
calling /customers (a protected path) | |
-> login | |
-> Use of uninitialized value in warn at script/../lib/Ds/Controllers/Auth.pm line 18. | |
(line 18 is the warn in the sub index) | |
#routes | |
$r->route('/')->to('index#welcome' )->name('index'); | |
$r->route('/login')->to('auth#index' )->name('login'); | |
$r->route('/logout')->to('auth#logout' )->name('logout'); |
NewerOlder