Compare commits
	
		
			9 Commits
		
	
	
		
			funtoo-ope
			...
			openrc-0.1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					c420f56856 | ||
| 
						 | 
					5b0f323da9 | ||
| 
						 | 
					d86853538a | ||
| 
						 | 
					f2c0e700c6 | ||
| 
						 | 
					b1de9d7324 | ||
| 
						 | 
					5b4886d23e | ||
| 
						 | 
					2a53efbc07 | ||
| 
						 | 
					a530722f65 | ||
| 
						 | 
					661e9cf002 | 
@@ -1,3 +1,3 @@
 | 
				
			|||||||
NAME=		openrc
 | 
					NAME=		openrc
 | 
				
			||||||
VERSION=	0.12
 | 
					VERSION=	0.12.2
 | 
				
			||||||
PKG=		${NAME}-${VERSION}
 | 
					PKG=		${NAME}-${VERSION}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,7 +9,7 @@ depend()
 | 
				
			|||||||
	need fsck
 | 
						need fsck
 | 
				
			||||||
	use lvm modules mtab
 | 
						use lvm modules mtab
 | 
				
			||||||
	after lvm modules
 | 
						after lvm modules
 | 
				
			||||||
	keyword -jail -openvz -prefix -vserver -lxc
 | 
						keyword -jail -prefix -vserver -lxc
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
start()
 | 
					start()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,7 +12,7 @@ depend()
 | 
				
			|||||||
	config /etc/fstab
 | 
						config /etc/fstab
 | 
				
			||||||
	use afc-client amd autofs openvpn
 | 
						use afc-client amd autofs openvpn
 | 
				
			||||||
	use dns
 | 
						use dns
 | 
				
			||||||
	keyword -jail -prefix -vserver
 | 
						keyword -jail -prefix -vserver -lxc
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
start()
 | 
					start()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -116,7 +116,7 @@ cgroup_set_limits()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
cgroup_cleanup()
 | 
					cgroup_cleanup()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	yesno "${rc_cgroup_cleanup:-no}" && cgroup_running || return 0
 | 
						cgroup_running || return 0
 | 
				
			||||||
	ebegin "starting cgroups cleanup"
 | 
						ebegin "starting cgroups cleanup"
 | 
				
			||||||
	for sig in TERM QUIT INT; do
 | 
						for sig in TERM QUIT INT; do
 | 
				
			||||||
		cgroup_get_pids || { eend 0 "finished" ; return 0 ; }
 | 
							cgroup_get_pids || { eend 0 "finished" ; return 0 ; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -308,6 +308,7 @@ while [ -n "$1" ]; do
 | 
				
			|||||||
				fi
 | 
									fi
 | 
				
			||||||
				[ "$(command -v cgroup_cleanup)" = "cgroup_cleanup" -a \
 | 
									[ "$(command -v cgroup_cleanup)" = "cgroup_cleanup" -a \
 | 
				
			||||||
				"$1" = "stop" ] && \
 | 
									"$1" = "stop" ] && \
 | 
				
			||||||
 | 
									yesno "${rc_cgroup_cleanup}" && \
 | 
				
			||||||
					cgroup_cleanup
 | 
										cgroup_cleanup
 | 
				
			||||||
				shift
 | 
									shift
 | 
				
			||||||
				continue 2
 | 
									continue 2
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -856,7 +856,7 @@ rc_deptree_update(void)
 | 
				
			|||||||
	 * work for them. This doesn't stop them from being run directly. */
 | 
						 * work for them. This doesn't stop them from being run directly. */
 | 
				
			||||||
	if (sys) {
 | 
						if (sys) {
 | 
				
			||||||
		len = strlen(sys);
 | 
							len = strlen(sys);
 | 
				
			||||||
		nosys = xmalloc(len + 1);
 | 
							nosys = xmalloc(len + 2);
 | 
				
			||||||
		nosys[0] = '-';
 | 
							nosys[0] = '-';
 | 
				
			||||||
		for (i = 0; i < len; i++)
 | 
							for (i = 0; i < len; i++)
 | 
				
			||||||
			nosys[i + 1] = (char)tolower((unsigned char)sys[i]);
 | 
								nosys[i + 1] = (char)tolower((unsigned char)sys[i]);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -193,7 +193,7 @@ file_regex(const char *file, const char *regex)
 | 
				
			|||||||
			str += strlen(str) + 1;
 | 
								str += strlen(str) + 1;
 | 
				
			||||||
			/* len is the size of allocated buffer and we don't
 | 
								/* len is the size of allocated buffer and we don't
 | 
				
			||||||
			   want call regexec BUFSIZE times. find next str */
 | 
								   want call regexec BUFSIZE times. find next str */
 | 
				
			||||||
			while (*str == '\0' && str < line + len)
 | 
								while (str < line + len && *str == '\0')
 | 
				
			||||||
				str++;
 | 
									str++;
 | 
				
			||||||
		} while (str < line + len);
 | 
							} while (str < line + len);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -316,14 +316,12 @@ get_pid(const char *pidfile, bool quiet)
 | 
				
			|||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if ((fp = fopen(pidfile, "r")) == NULL) {
 | 
						if ((fp = fopen(pidfile, "r")) == NULL) {
 | 
				
			||||||
		if (!quiet)
 | 
							ewarnv("%s: fopen `%s': %s", applet, pidfile, strerror(errno));
 | 
				
			||||||
			eerror("%s: fopen `%s': %s", applet, pidfile, strerror(errno));
 | 
					 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (fscanf(fp, "%d", &pid) != 1) {
 | 
						if (fscanf(fp, "%d", &pid) != 1) {
 | 
				
			||||||
		if (!quiet)
 | 
							ewarnv("%s: no pid found in `%s'", applet, pidfile);
 | 
				
			||||||
			eerror("%s: no pid found in `%s'", applet, pidfile);
 | 
					 | 
				
			||||||
		fclose(fp);
 | 
							fclose(fp);
 | 
				
			||||||
		return -1;
 | 
							return -1;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -461,7 +459,7 @@ run_stop_schedule(const char *exec, const char *const *argv,
 | 
				
			|||||||
				{
 | 
									{
 | 
				
			||||||
					if ((nrunning = do_stop(exec, argv,
 | 
										if ((nrunning = do_stop(exec, argv,
 | 
				
			||||||
						    pid, uid, 0, true, false,
 | 
											    pid, uid, 0, true, false,
 | 
				
			||||||
						    true)) == 0)
 | 
						test)) == 0)
 | 
				
			||||||
						return 0;
 | 
											return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1088,7 +1086,7 @@ start_stop_daemon(int argc, char **argv)
 | 
				
			|||||||
		pid = 0;
 | 
							pid = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (do_stop(exec, (const char * const *)margv, pid, uid,
 | 
						if (do_stop(exec, (const char * const *)margv, pid, uid,
 | 
				
			||||||
		0, true, false, true) > 0)
 | 
							0, true, false, test) > 0)
 | 
				
			||||||
		eerrorx("%s: %s is already running", applet, exec);
 | 
							eerrorx("%s: %s is already running", applet, exec);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (test) {
 | 
						if (test) {
 | 
				
			||||||
@@ -1366,7 +1364,7 @@ start_stop_daemon(int argc, char **argv)
 | 
				
			|||||||
			} else
 | 
								} else
 | 
				
			||||||
				pid = 0;
 | 
									pid = 0;
 | 
				
			||||||
			if (do_stop(exec, (const char *const *)margv,
 | 
								if (do_stop(exec, (const char *const *)margv,
 | 
				
			||||||
				pid, uid, 0, true, false, true) > 0)
 | 
									pid, uid, 0, true, false, test) > 0)
 | 
				
			||||||
				alive = true;
 | 
									alive = true;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user