mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	The old "zulip_internal" name was from back when Zulip, Inc. had two distributions of Zulip, the enterprise distribution in puppet/zulip/ and the "internal" SAAS distribution in puppet/zulip_internal. I think the name is a bit confusing in the new fully open-source Zulip work, so we're replacing it with "zulip_ops". I don't think the new name is perfect, but it's better. In the following commits, we'll delete a bunch of pieces of Zulip, Inc.'s infrastructure that don't exist anymore and thus are no longer useful (e.g. the old Trac configuration), with the goal of cleaning the repository of as much unnecessary content as possible.
		
			
				
	
	
		
			14 lines
		
	
	
		
			225 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			225 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh
 | 
						|
# Run zulip-ec2-configure-interfaces when eth0 is brought up
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
# Only run from ifup.
 | 
						|
if [ "$MODE" != start ]; then
 | 
						|
	exit 0
 | 
						|
fi
 | 
						|
 | 
						|
if [ "$IFACE" = eth0 ]; then
 | 
						|
	/usr/local/sbin/zulip-ec2-configure-interfaces
 | 
						|
fi
 |