-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSetupPE.sh
executable file
·17 lines (17 loc) · 964 Bytes
/
SetupPE.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
cd /home/ubuntu/DCTM-xCP-16.4.0/media-files
FILE=pe.installed
if [ -f "$FILE" ]; then
echo "Process Engine was already installed. If you want to re-install, delete the file 'pe.installed', and retry it."
else
sudo docker exec documentum-cs su - dmadmin -c 'mkdir -p /opt/dctm_docker/PE'
sudo docker cp ~/media/DCTM-xCP-16.4.0/media-files/process_engine_linux.tar documentum-cs:/opt/dctm_docker/PE/
sudo docker cp pe.properties documentum-cs:/opt/dctm_docker/PE/
sudo docker exec documentum-cs su - dmadmin -c 'cd /opt/dctm_docker/PE/; tar -xvf process_engine_linux.tar; chmod 775 peSetup.bin'
sudo docker exec documentum-cs su - dmadmin -c 'rm -rf /opt/dctm_docker/PE/process_engine_linux.tar'
echo "Wait for 8-10 minutes to complete this process. "
echo "{STARTED [`date`]}"
sudo docker exec documentum-cs su - dmadmin -c 'cd /opt/dctm_docker/PE/; ./peSetup.bin -f pe.properties'
echo "{FINISHED [`date`]}"
touch pe.installed
fi