Browse Source

dancer plack and web-simple depend on nginx being installed

Joel Berger 11 years ago
parent
commit
f691d2c102
3 changed files with 3 additions and 3 deletions
  1. 1 1
      dancer/install.sh
  2. 1 1
      plack/install.sh
  3. 1 1
      web-simple/install.sh

+ 1 - 1
dancer/install.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends perl
+fw_depends perl nginx
 
 cpanm --notest --no-man-page Dancer Dancer::Plugin::Database DBI DBD::mysql JSON::XS Plack Starman
 echo installed Dancer app dependencies

+ 1 - 1
plack/install.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends perl
+fw_depends perl nginx
 
 cpanm --notest --no-man-page --installdeps $TROOT
 echo installed Plack app dependencies

+ 1 - 1
web-simple/install.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends perl
+fw_depends perl nginx
 
 cpanm --notest --no-man-page Web::Simple DBI DBD::mysql Plack Starman JSON::XS
 echo installed Web::Simple app dependencies