Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<user-list>
<user><name>iannuzzo</name>
<domain>ADMIN</domain>
</user>
<user><name>colodzin</name>
<domain>ADMIN</domain>
</user>
<user><name>dongq</name>
<domain>ADMIN</domain>
</user>
<user><name>dracus</name>
<domain>ADMIN</domain>
</user-list>

6.  Install ImageMagic ImageMagic  and Ghostscript on the top layer of the stack.

     6a. go to www.imagemagick.org and get the source distribution: ImageMagick-6.3.2-9.tar.gz, or get it from the ISDA software repository on Trogdor

     6b. unzip and unstar untar ImageMagick-6.3.2.tar.gz and cd to ImageMagic-6.3.2
         directory

...

     6d. after installation, you should be able to type "convert" command and
         get the help page.

     6e. Go to http://pages.cs.wisc.edu/~ghost/Image Added download ghostscript-8.61.tar.gz and ghostscript-fonts-std-8.11.tar.gz, or get them from the ISDA software repository on Trogdor.

     6f.  Remove previous ghostscript builds and build ghostscript from source

Code Block

cd /opt
tar -xzvf /root/ghostscript-8.61.tar.gz
cd ghostscript-8.61
./configure
make
make install
cd /usr/local/share/ghostscript/
tar -xzvf /root/ghostscript-fonts-std-8.11.tar.gz

7.  On the second server in the stack, customize the Alfresco installation.

...

         The additional block should be:

         

Code Block
  <!-- Custom permissions for Thalia -->

           <permissionGroup name="ThaliaWrite" allowFullControl="false"
                 expose="false">
              <includePermissionGroup type="sys:base" permissionGroup="Write"/>
          <includePermissionGroup type="sys:base" permissionGroup="Read"/>
          <includePermissionGroup type="sys:base"
                 permissionGroup="AddChildren"/>
          <includePermissionGroup type="sys:base" permissionGroup="Delete"/>
          <includePermissionGroup type="sys:base"
                 permissionGroup="ExecuteContent"/>
           </permissionGroup>
    
           <permissionGroup name="ThaliaRead"  allowFullControl="false"
                 expose="false">
             <includePermissionGroup type="sys:base"
                  permissionGroup="ReadProperties"/>
             <includePermissionGroup type="sys:base"
                  permissionGroup="ReadChildren"/>
         <includePermissionGroup type="sys:base"
                  permissionGroup="ReadContent"/>
           </permissionGroup>

           <permissionGroup name="ThaliaDownload" allowFullControl="false"
                expose="false">
              <includePermissionGroup type="sys:base"
                  permissionGroup="ReadProperties"/>
              <includePermissionGroup type="sys:base"
                  permissionGroup="ReadChildren"/>
              <includePermissionGroup type="sys:base"
                  permissionGroup="ReadContent"/>
          <includePermissionGroup type="sys:base"
                  permissionGroup="ExecuteContent"/>
           </permissionGroup>

           <!--  End of custom permissions for Thalia  -->

...

          In the <property name="adminUsers"> block, add the following line
          before the </properties> line:

Code Block
         <value>thaliaAdmin</value>

...