14 lines
		
	
	
		
			481 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			481 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
#----------------------------------------------------------------------
 | 
						|
# copyright (C) 1999-2005 Mitel Networks Corporation
 | 
						|
#----------------------------------------------------------------------
 | 
						|
 | 
						|
if ! test -e /home/e-smith/files/ibays/Primary/html
 | 
						|
then
 | 
						|
  # Make sure that DocumentRoot directory exists
 | 
						|
  mkdir -p /home/e-smith/files/ibays/Primary/html
 | 
						|
  chown admin.shared /home/e-smith/files/ibays/Primary/html
 | 
						|
  chmod 02750 /home/e-smith/files/ibays/Primary/html
 | 
						|
fi
 | 
						|
 |