mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2025-04-06 05:55:55 +02:00
Add check for perl modules
This commit is contained in:
parent
5a6912c1ac
commit
b8b7273016
45
scripts/checkPerlModules.pl
Executable file
45
scripts/checkPerlModules.pl
Executable file
@ -0,0 +1,45 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
my $filename =
|
||||||
|
shift || &help; # command line argument is perl script to evaluate
|
||||||
|
my @modules; # array of 'use' statements from code we are checking
|
||||||
|
|
||||||
|
open( IN, $filename ) or die "couldn't open $filename for processing: $!
|
||||||
|
+\n";
|
||||||
|
|
||||||
|
while (<IN>) {
|
||||||
|
chomp;
|
||||||
|
if ( (/^use/) and not( /strict/ || /warnings/ ) ) {
|
||||||
|
push @modules, $_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
close IN;
|
||||||
|
for my $code (@modules) {
|
||||||
|
my ( undef, $library ) = split( / /, $code ); # get the module name
|
||||||
|
$library =~ s/;//; # clean up the name
|
||||||
|
eval $code;
|
||||||
|
if ($@) {
|
||||||
|
warn "couldn't load $library: $@", "\n";
|
||||||
|
} else {
|
||||||
|
print "$library looks ok\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sub help
|
||||||
|
{
|
||||||
|
print <<"END";
|
||||||
|
|
||||||
|
checkPerlModules.pl
|
||||||
|
|
||||||
|
This script finds all the "use" statements loading modules in the targ
|
||||||
|
+et perl
|
||||||
|
file (specified as a command line argument) and attempts to load them.
|
||||||
|
If there are problems loading the module, the error mesage returned is
|
||||||
|
+ printed.
|
||||||
|
|
||||||
|
END
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
46
setupDev.sh
46
setupDev.sh
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
echo ""
|
echo ""
|
||||||
echo "|--------------------------------------------------------------------------------------|"
|
echo "|--------------------------------------------------------------------------------------|"
|
||||||
echo "| Welcome to cc-docker automatic deployment script. |"
|
echo "| Welcome to cc-docker automatic deployment script. |"
|
||||||
@ -18,16 +19,27 @@ echo ""
|
|||||||
|
|
||||||
# Check cc-backend if exists
|
# Check cc-backend if exists
|
||||||
if [ ! -d cc-backend ]; then
|
if [ ! -d cc-backend ]; then
|
||||||
echo "'cc-backend' not yet prepared! Please clone cc-backend repository before starting this script."
|
echo "'cc-backend' not yet prepared! Please clone cc-backend repository before starting this script."
|
||||||
echo -n "Stopped."
|
echo -n "Stopped."
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if required perl modules are installed
|
||||||
|
if ./scripts/checkPerlModules.pl migrateTimestamps.pl | grep "couldn't load"; then
|
||||||
|
echo "Perl Modules missing!"
|
||||||
|
echo -n "Stopped."
|
||||||
|
exit
|
||||||
|
else
|
||||||
|
echo "Perl Modules loaded."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n "GET HERE."
|
||||||
|
exit
|
||||||
# Creates data directory if it does not exists.
|
# Creates data directory if it does not exists.
|
||||||
# Contains all the mount points required by all the docker services
|
# Contains all the mount points required by all the docker services
|
||||||
# and their static files.
|
# and their static files.
|
||||||
if [ ! -d data ]; then
|
if [ ! -d data ]; then
|
||||||
mkdir -m777 data
|
mkdir -m777 data
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Invokes the dataGenerationScript.sh, which then populates the required
|
# Invokes the dataGenerationScript.sh, which then populates the required
|
||||||
@ -41,12 +53,12 @@ perl ./migrateTimestamps.pl
|
|||||||
|
|
||||||
# Create archive folder for rewritten ccms checkpoints
|
# Create archive folder for rewritten ccms checkpoints
|
||||||
if [ ! -d data/cc-metric-store/archive ]; then
|
if [ ! -d data/cc-metric-store/archive ]; then
|
||||||
mkdir -p data/cc-metric-store/archive
|
mkdir -p data/cc-metric-store/archive
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# cleanup sources
|
# cleanup sources
|
||||||
if [ -d data/cc-metric-store-source ]; then
|
if [ -d data/cc-metric-store-source ]; then
|
||||||
rm -r data/cc-metric-store-source
|
rm -r data/cc-metric-store-source
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Just in case user forgot manually shutdown the docker services.
|
# Just in case user forgot manually shutdown the docker services.
|
||||||
@ -66,21 +78,21 @@ docker-compose up -d
|
|||||||
|
|
||||||
cd cc-backend
|
cd cc-backend
|
||||||
if [ ! -d var ]; then
|
if [ ! -d var ]; then
|
||||||
wget https://hpc-mover.rrze.uni-erlangen.de/HPC-Data/0x7b58aefb/eig7ahyo6fo2bais0ephuf2aitohv1ai/job-archive-demo.tar
|
wget https://hpc-mover.rrze.uni-erlangen.de/HPC-Data/0x7b58aefb/eig7ahyo6fo2bais0ephuf2aitohv1ai/job-archive-demo.tar
|
||||||
tar xf job-archive-demo.tar
|
tar xf job-archive-demo.tar
|
||||||
rm ./job-archive-demo.tar
|
rm ./job-archive-demo.tar
|
||||||
|
|
||||||
cp ./configs/env-template.txt .env
|
cp ./configs/env-template.txt .env
|
||||||
cp -f ../misc/config.json config.json
|
cp -f ../misc/config.json config.json
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
||||||
./cc-backend -migrate-db
|
./cc-backend -migrate-db
|
||||||
./cc-backend --init-db --add-user demo:admin:demo
|
./cc-backend --init-db --add-user demo:admin:demo
|
||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
cd ..
|
cd ..
|
||||||
echo "'cc-backend/var' exists. Cautiously exiting."
|
echo "'cc-backend/var' exists. Cautiously exiting."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user