mirror of
				https://github.com/iiab/iiab.git
				synced 2025-03-09 15:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash -x
 | 
						|
# required to start loading XSCE 
 | 
						|
set -e
 | 
						|
 | 
						|
apt-get update
 | 
						|
apt-get upgrade
 | 
						|
apt-get install -y mlocate vim emacs
 | 
						|
 | 
						|
cd /opt
 | 
						|
mkdir schoolserver
 | 
						|
cd schoolserver
 | 
						|
git clone https://github.com/xsce/xsce --depth 1 
 | 
						|
cd xsce
 | 
						|
 | 
						|
# install ansible using script
 | 
						|
./scripts/ansible
 | 
						|
 | 
						|
./runansible
 | 
						|
 |