File: cpanm_install_modules.sh

package info (click to toggle)
torrus 3.00-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 4,548 kB
  • sloc: perl: 34,614; xml: 20,934; sh: 3,650; makefile: 713
file content (22 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
for m in \
    Redis::Fast \
    Git::Raw \
    Git::ObjectStore \
    Digest::SHA \
    Cache::Ref \
    JSON \
    JSON::XS \
    XML::LibXML \
    Template \
    Proc::Daemon \
    Net::SNMP \
    URI::Escape \
    Apache::Session \
    Date::Parse \
    CGI::Fast \
    FCGI \
;do
    cpanm --notest $m
    if [ $? -ne 0 ]; then exit 1; fi
done