Compare commits
	
		
			32 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | b4789b9910 | ||
|   | d5ae8a2ad1 | ||
|   | 3a276728e0 | ||
|   | 29d3e0bde2 | ||
|   | 969a036225 | ||
|   | 9767d24510 | ||
|   | c73284ef96 | ||
|   | 0657bf0d25 | ||
|   | 80aad11b02 | ||
|   | 2d9dc654b5 | ||
|   | f46cc83ef7 | ||
|   | cc45b55f89 | ||
|   | 930e69017f | ||
|   | 44912434cf | ||
|   | c7fde9a3da | ||
|   | ffededbf95 | ||
|   | b0efb663f9 | ||
|   | aa69e48125 | ||
|   | 4ba10f1d50 | ||
|   | 38a9e2ff63 | ||
|   | 783af5abac | ||
|   | 75c3b53e31 | ||
|   | c300c180a2 | ||
|   | be8d2ee6e3 | ||
|   | d9ef1bb635 | ||
|   | cfc6991219 | ||
|   | 97ae5af201 | ||
|   | 4c820a0e48 | ||
|   | 9c39b381a5 | ||
|   | 321bb2cd90 | ||
|   | 8c99d817d4 | ||
| 2e1fb4d02b | 
| @@ -4,7 +4,8 @@ | ||||
| test_task: | ||||
|   freebsd_instance: | ||||
|     matrix: | ||||
|       image: freebsd-12-1-release-amd64 | ||||
|       image: freebsd-13-0-release-amd64 | ||||
|       image: freebsd-12-2-release-amd64 | ||||
|       image: freebsd-11-4-release-amd64 | ||||
|   env: | ||||
|     OS: FreeBSD | ||||
|   | ||||
							
								
								
									
										26
									
								
								.github/workflows/ci-alpine-linux.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								.github/workflows/ci-alpine-linux.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| name: ci_alpine_linux | ||||
|  | ||||
| on: [push, pull_request] | ||||
|  | ||||
| jobs: | ||||
|  | ||||
|   gcc-musl: | ||||
|     runs-on: ubuntu-latest | ||||
|     container: alpine:latest | ||||
|     steps: | ||||
|       - name: install deps | ||||
|         run: >- | ||||
|           apk --no-cache add \ | ||||
|             build-base \ | ||||
|             meson \ | ||||
|             pkgconf \ | ||||
|             linux-pam \ | ||||
|             linux-pam-dev | ||||
|       - name: checkout | ||||
|         uses: actions/checkout@v2 | ||||
|       - run: meson setup builddir/ | ||||
|         env: | ||||
|           CC: gcc | ||||
|       - run: ninja -C builddir | ||||
|         env: | ||||
|           CC: gcc | ||||
							
								
								
									
										32
									
								
								.github/workflows/ci-ubuntu.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								.github/workflows/ci-ubuntu.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,32 @@ | ||||
| name: ci_ubuntu | ||||
|  | ||||
| on: [push, pull_request] | ||||
|  | ||||
| jobs: | ||||
|  | ||||
|   gcc-glibc: | ||||
|     runs-on: ubuntu-latest | ||||
|     steps: | ||||
|     - uses: actions/checkout@v2 | ||||
|     - run: sudo apt-get update -q | ||||
|     - run: sudo apt-get install -q -y build-essential libpam-dev meson | ||||
|     - run: meson setup builddir/ | ||||
|       env: | ||||
|         CC: gcc | ||||
|     - run: ninja -C builddir | ||||
|       env: | ||||
|         CC: gcc | ||||
|  | ||||
|  | ||||
|   clang-glibc: | ||||
|     runs-on: ubuntu-latest | ||||
|     steps: | ||||
|     - uses: actions/checkout@v2 | ||||
|     - run: sudo apt-get update -q | ||||
|     - run: sudo apt-get install -q -y build-essential clang libpam-dev meson | ||||
|     - run: meson setup builddir/ | ||||
|       env: | ||||
|         CC: clang | ||||
|     - run: ninja -C builddir | ||||
|       env: | ||||
|         CC: clang | ||||
							
								
								
									
										293
									
								
								ChangeLog
									
									
									
									
									
								
							
							
						
						
									
										293
									
								
								ChangeLog
									
									
									
									
									
								
							| @@ -1,3 +1,290 @@ | ||||
| commit 3a276728e079aa9f44ab19cf5858e1eac2670462 | ||||
| Author: Kerin Millar <kfm@plushkava.net> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     init.d/s6-svscan.in: make sure $command exists | ||||
|      | ||||
|     While the s6-svscan runscript belongs to OpenRC, the user is required to | ||||
|     install s6 before it can actually be used, potentially leading to | ||||
|     confusion. Check for the existence of $command in start_pre and, if it does not | ||||
|     exist, bail out with an error that makes this observation. | ||||
|      | ||||
|     X-Gentoo-Bug: 816978 | ||||
|     X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=816978 | ||||
|  | ||||
| commit 29d3e0bde237e13f8c5083d2f0db50652061bf2c | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     selinux build fix | ||||
|  | ||||
| commit 969a0362252a7f9459337ac564ebf5f0c2c74476 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     fix bug in pam build tests | ||||
|  | ||||
| commit 9767d24510e1d52b86a2051c25af2fa5928e7319 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     support older pam versions | ||||
|      | ||||
|     Some distros are still using versions of pam which do not create | ||||
|     *.pc files, so we need fallback logic for that situation. | ||||
|  | ||||
| commit c73284ef963cd6b3c47dd007a45f5c13c5dafcb0 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     build: fix pam and pam_misc dependencies | ||||
|      | ||||
|     Pam generates pkgconfig files now, so meson can use them to find the pam | ||||
|     dependencies. | ||||
|  | ||||
| commit 0657bf0d25a460b4b56579984eb326302f3bf121 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     separate github actions based on OS | ||||
|      | ||||
|     This fixes #466. | ||||
|  | ||||
| commit 80aad11b02d575d5a949914bb6942b92fc15e834 | ||||
| Author: Sam James <sam@gentoo.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     add github action to build on several linux platforms | ||||
|      | ||||
|     This github action runs a build on each of the following platforms on a | ||||
|     push or pull request. | ||||
|      | ||||
|     - Ubuntu LTS with gcc and glibc | ||||
|     - Ubuntu LTS with clang and glibc | ||||
|     - Alpine with gcc and musl | ||||
|      | ||||
|     This fixes #463. | ||||
|  | ||||
| commit 2d9dc654b58c4a523b01097369ce94708c8cf43a | ||||
| Author: Sam James <sam@gentoo.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     .cirrus.yml: update FreeBSD images | ||||
|  | ||||
| commit f46cc83ef7100ce713c4e616524e63371825e153 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     move rc_bindir and rc_sbindir definitions to the top level | ||||
|  | ||||
| commit cc45b55f895d0c21b5ac3e5a65b0bf00f76adeb7 | ||||
| Author: Sam James <sam@gentoo.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     checkpath: fix allocation size of path buffer | ||||
|      | ||||
|     strlen's return value isn't enough to be used | ||||
|     directly for (x)malloc; it doesn't include | ||||
|     the null byte at the end of the string. | ||||
|      | ||||
|     X-Gentoo-Bug: 816900 | ||||
|     X-Gentoo-Bug-URL: https://bugs.gentoo.org/816900 | ||||
|     Fixes: #459 | ||||
|     Fixes: #462 | ||||
|  | ||||
| commit 930e69017f95766c662763c2445e2827eb037fd7 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     version 0.44.6 | ||||
|  | ||||
| commit 44912434cfe139a1953bbd3b2cde7e0b2bce0ae7 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     update ChangeLog | ||||
|  | ||||
| commit c7fde9a3dab01d30d16f9907f7cce00799f92821 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     fix build for selinux | ||||
|      | ||||
|     I would like to thank jpds@protonmail.com for the patch. | ||||
|      | ||||
|     X-Gentoo-Bug: 815847 | ||||
|     X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=815847 | ||||
|  | ||||
| commit ffededbf955e39add0fbbacc22f2c0d7a8901b35 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     version 0.44.5 | ||||
|  | ||||
| commit b0efb663f9ed84627c302a2d051fc5a74fb0c2b6 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     update ChangeLog | ||||
|  | ||||
| commit aa69e48125df7684ab3b77eaf9013f8c126b1fca | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     build: fix rootprefix | ||||
|      | ||||
|     This fixes #438. | ||||
|  | ||||
| commit 4ba10f1d5074a45b4ddd96d2d404842fa3b38e63 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     link runscript with audit | ||||
|  | ||||
| commit 38a9e2ff630b0e0bd261afb2e66072f904b5d608 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     link openrc-run with audit and libpam_misc | ||||
|  | ||||
| commit 783af5abac209c7745fd5c06dc89b2f5dfa3b313 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     version 0.44.4 | ||||
|  | ||||
| commit 75c3b53e3195f2d3541a7d83920667d1c4b14337 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     update ChangeLog | ||||
|  | ||||
| commit c300c180a2a7dbefb46272c2acac6462372b8eb0 | ||||
| Author: Natanael Copa <ncopa@alpinelinux.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     hide error when migrating /var/run to /run | ||||
|      | ||||
|     The script tries to copy non-existing files. We simply hide the error | ||||
|      | ||||
|     http://bugs.alpinelinux.org/issues/3160 | ||||
|     This fixes #451. | ||||
|  | ||||
| commit be8d2ee6e35a6ea504e6a3cf725b8804dd2da617 | ||||
| Author: Natanael Copa <ncopa@alpinelinux.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     force root to be rw before localmount | ||||
|      | ||||
|     The original service that pulled in root remount was mtab which | ||||
|     is not part of OpenRC. | ||||
|      | ||||
|     This fixes #449. | ||||
|  | ||||
| commit d9ef1bb6355c62e335a972f203806210de68912f | ||||
| Author: Aaditya Bagga <aaditya_gnulinux@zoho.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     [runit integration] give a bit of time to start the service | ||||
|      | ||||
|     Currently, we run sv start immediately after linking the service. | ||||
|     The runsv process may not be up at the moment, as a result of which | ||||
|     openrc will mark the service as stopped, even though it may be brought up | ||||
|     by runit at the next scan. | ||||
|      | ||||
|     This is documented in the gentoo wiki: | ||||
|     https://wiki.gentoo.org/wiki/Runit#OpenRC.27s_runit_integration_feature | ||||
|      | ||||
|     This PR adds a timeout so that correct process state can be reported. | ||||
|      | ||||
|     Before: | ||||
|      * Starting netdata-runit ... | ||||
|     fail: /run/openrc/sv/netdata: runsv not running | ||||
|      * Failed to start netdata-runit | ||||
|      | ||||
|     After: | ||||
|      * Starting netdata-runit ... | ||||
|     fail: /run/openrc/sv/netdata: runsv not running | ||||
|     ok: run: /run/openrc/sv/netdata: (pid 9042) 0s | ||||
|      | ||||
|     This fixes #253. | ||||
|  | ||||
| commit cfc699121960a8298c8e9519239c149f31a35ef0 | ||||
| Author: Jakub Jirutka <jakub@jirutka.cz> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     Fix undeclared UT_LINESIZE | ||||
|      | ||||
|     Fix the following error: | ||||
|      | ||||
|             broadcast.c:41:21: error: '__UT_LINESIZE' undeclared (first use in this function); did you mean 'UT_LINESIZE'? | ||||
|              #define UT_LINESIZE __UT_LINESIZE | ||||
|                               ^~~~~~~~~~ | ||||
|      | ||||
|     Constant UT_LINESIZE is defined in <utmp.h> provided by musl. | ||||
|  | ||||
| commit 97ae5af2017df2667e0c79d7dac3706b3a93c6cc | ||||
| Author: Sören Tempel <soeren+git@soeren-tempel.net> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     rc-mount: make timeout invocation compatible with busybox timeout | ||||
|      | ||||
|     Busybox timeout does not support the `-k` flag. As such, invoking fuser | ||||
|     from do_unmount never worked without this patch. This went unnoticed as | ||||
|     standard error is redirected to /dev/null. This patch fixes this by | ||||
|     simply removing the incompatible `-k` flag. | ||||
|      | ||||
|     [Ariadne: the `-k` is redundant anyway, since we are sending the KILL | ||||
|      signal to begin with.] | ||||
|  | ||||
| commit 4c820a0e48301f997911a196d6159670dad68296 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     version 0.44.3 | ||||
|  | ||||
| commit 9c39b381a5185325dc1359b6001f00e60732ec71 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     update ChangeLog | ||||
|  | ||||
| commit 321bb2cd90cf673d03175c56bf1cecfcef02bd49 | ||||
| Author: Ariadne Conill <ariadne@dereferenced.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     fix build under musl 1.2 on 32 bit systems | ||||
|      | ||||
|     Since musl 1.2 time_t is a 64 bit value, even on 32 bit systems. A | ||||
|     hotfix for printing the value is simply using PRIu64 from inttypes.h | ||||
|     in the format string. | ||||
|      | ||||
|     This fixes #446. | ||||
|  | ||||
| commit 8c99d817d48bc879504b8973d868e1718f4e7d12 | ||||
| Author: Ariadne Conill <ariadne@dereferenced.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     fix trailing whitespace in tools/meson_runlevels.sh | ||||
|  | ||||
| commit 2e1fb4d02b1ad294394107642aed07f057e6a8b9 | ||||
| Author: artoo <artoo@artixlinux.org> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     meson: fix symlinks with sysvinit | ||||
|  | ||||
| commit a2f0afb8bcb024c8d532d8be8b855d72f999aab8 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     version 0.44.2 | ||||
|  | ||||
| commit 430fa132f2596de126f8461f361333c89b794945 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     update ChangeLog | ||||
|  | ||||
| commit 12cd7ce9dea73926c203c5d64e425d51e209425a | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
| @@ -745,9 +1032,3 @@ Commit: Mike Frysinger <vapier@gmail.com> | ||||
|     Update user-guide.md | ||||
|      | ||||
|     Add missing underscore. | ||||
|  | ||||
| commit 2355f1a3f2a4fd62cac6d9af0e94c8731acd4c0f | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     supervise-daemon: only log debug logs when verbose mode is active | ||||
|   | ||||
| @@ -1,3 +1,3 @@ | ||||
| NAME=		openrc | ||||
| VERSION=	0.44.2 | ||||
| VERSION=	0.44.7 | ||||
| PKG=		${NAME}-${VERSION} | ||||
|   | ||||
| @@ -113,8 +113,10 @@ migrate_to_run() | ||||
|  		rm $src | ||||
|  	elif [ ! -L $src -a -d $src ]; then | ||||
|  		ebegin "Migrating $src to $dst" | ||||
|  		cp -a $src/* $dst/ | ||||
|  		rm -rf $src | ||||
|  		if ! rmdir $src 2>/dev/null; then | ||||
|  			cp -a $src/* $dst/ | ||||
|  			rm -rf $src | ||||
|  		fi | ||||
|  		eend $? | ||||
|  	fi | ||||
|  	# If $src doesn't exist at all, just run this | ||||
|   | ||||
| @@ -13,9 +13,9 @@ description="Mounts disks and swap according to /etc/fstab." | ||||
|  | ||||
| depend() | ||||
| { | ||||
| 	need fsck | ||||
| 	use lvm modules root | ||||
| 	after clock lvm modules root | ||||
| 	need fsck root | ||||
| 	use lvm modules | ||||
| 	after clock lvm modules | ||||
| 	keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -21,9 +21,13 @@ depend() | ||||
|  | ||||
| start_pre() | ||||
| { | ||||
| 	einfo "Creating s6 scan directory" | ||||
| 	checkpath -d -m 0755 "$RC_SVCDIR"/s6-scan | ||||
| 	return $? | ||||
| 	if [ ! -e "$command" ]; then | ||||
| 		eerror "$command is missing (please install s6)" | ||||
| 	else | ||||
| 		einfo "Creating s6 scan directory" | ||||
| 		checkpath -d -m 0755 "$RC_SVCDIR"/s6-scan | ||||
| 	fi | ||||
| 	return | ||||
| } | ||||
|  | ||||
| stop_post() | ||||
|   | ||||
							
								
								
									
										49
									
								
								meson.build
									
									
									
									
									
								
							
							
						
						
									
										49
									
								
								meson.build
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| project('OpenRC', 'c', | ||||
|   version : '0.44.2', | ||||
|   version : '0.44.7', | ||||
|   license: 'BSD-2', | ||||
|   default_options : [ | ||||
|     'c_std=c99', | ||||
| @@ -42,17 +42,20 @@ else | ||||
|   os = option_os | ||||
| endif | ||||
|  | ||||
| pam = get_option('pam') | ||||
| if pam | ||||
|   libpam = cc.find_library('pam') | ||||
|   libpam_misc = cc.find_library('pam_misc') | ||||
| pam_dep = dependency('pam', required: false) | ||||
| if not pam_dep.found() | ||||
|   pam_dep = cc.find_library('pam', required: false) | ||||
| endif | ||||
| if pam_dep.found() | ||||
|   cc_pam_flags = '-DHAVE_PAM' | ||||
| else | ||||
|   libpam = [] | ||||
|   libpam_misc = [] | ||||
|   cc_pam_flags = [] | ||||
| endif | ||||
|  | ||||
| if not pam_dep.found() and get_option('pam') | ||||
|   error('Pam was requested but could not be located') | ||||
|   endif | ||||
|  | ||||
| option_pkg_prefix = get_option('pkg_prefix') | ||||
| if option_pkg_prefix == '' | ||||
|   if os == 'Dragonfly' or os == 'FreeBSD' | ||||
| @@ -72,27 +75,39 @@ else | ||||
|   split_usr = get_option('split-usr') == 'true' | ||||
| endif | ||||
|  | ||||
| rootprefix_default = split_usr ? '/' : '/usr' | ||||
| rootprefix_path = get_option('rootprefix') | ||||
| rootprefix = rootprefix_path != '' ? rootprefix_path : rootprefix_default | ||||
| rootprefix = get_option('rootprefix') | ||||
| rootprefix_default = '/' | ||||
| if rootprefix == '' | ||||
| rootprefix = rootprefix_default | ||||
| endif | ||||
|  | ||||
| bindir = rootprefix / get_option('bindir') | ||||
| libdir = rootprefix / get_option('libdir') | ||||
| if os == 'Linux' and split_usr | ||||
|   libexecpath = 'lib' | ||||
| else | ||||
|   libexecpath = get_option('libexecdir') | ||||
| libexecdir = get_option('libexecdir') | ||||
| if os == 'Linux' and libexecdir == 'libexec' | ||||
|   libexecdir = 'lib' | ||||
| endif | ||||
| libexecdir = split_usr ? rootprefix / libexecpath : | ||||
|   get_option('prefix') / libexecpath | ||||
| libexecdir = rootprefix / libexecdir | ||||
| rc_libexecdir = libexecdir / 'rc' | ||||
| rc_bindir = rc_libexecdir / 'bin' | ||||
| rc_sbindir = rc_libexecdir / 'sbin' | ||||
| sbindir = rootprefix / get_option('sbindir') | ||||
|  | ||||
| selinux_dep = dependency('libselinux', required : get_option('selinux')) | ||||
| if selinux_dep.found() | ||||
|   cc_selinux_flags = '-DHAVE_SELINUX' | ||||
|   else | ||||
|   if pam_dep.found() and get_option('pam') | ||||
|     pam_misc_dep = dependency('pam_misc', required: false) | ||||
|     if not pam_misc_dep.found() | ||||
|       pam_misc_dep = cc.find_library('pam_misc', required: false) | ||||
|     endif | ||||
|     if not pam_misc_dep.found() and get_option('pam') | ||||
|       error('Pam was requested but could not be located') | ||||
|     endif | ||||
|   endif | ||||
| else | ||||
|   cc_selinux_flags = [] | ||||
|   pam_misc_dep = [] | ||||
| endif | ||||
|  | ||||
| termcap = get_option('termcap') | ||||
|   | ||||
| @@ -8,12 +8,12 @@ sbindir="$2" | ||||
| binaries=" halt poweroff rc-sstat reboot shutdown" | ||||
| for f in $binaries; do | ||||
| 	if [ -x "${DESTDIR}${rc_libexecdir}/bin/${f}"  ]; then | ||||
| 		ln -snf "${DESTDIR}${rc_libexecdir}/bin/${f}" \ | ||||
| 		ln -snf "${rc_libexecdir}/bin/${f}" \ | ||||
| 			"${DESTDIR}${sbindir}/${f}" | ||||
| 	fi | ||||
| done | ||||
| # sysvinit is active when halt exits | ||||
| if [ -x "${DESTDIR}${rc_libexecdir}/bin/halt"  ]; then | ||||
| 	ln -snf "${DESTDIR}${sbindir}/openrc-init" \ | ||||
| 	ln -snf "${sbindir}/openrc-init" \ | ||||
| 		"${DESTDIR}${sbindir}/init" | ||||
| fi | ||||
|   | ||||
| @@ -48,7 +48,7 @@ do_unmount() | ||||
| 		retry=4 # Effectively TERM, sleep 1, TERM, sleep 1, KILL, sleep 1 | ||||
| 		while ! LC_ALL=C $cmd "$mnt" 2>/dev/null; do | ||||
| 			if command -v fuser >/dev/null 2>&1; then | ||||
| 				pids="$(timeout -k 10 -s KILL "${rc_fuser_timeout:-60}" \ | ||||
| 				pids="$(timeout -s KILL "${rc_fuser_timeout:-60}" \ | ||||
| 					fuser $f_opts "$mnt" 2>/dev/null)" | ||||
| 			fi | ||||
| 			case " $pids " in | ||||
|   | ||||
							
								
								
									
										16
									
								
								sh/runit.sh
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								sh/runit.sh
									
									
									
									
									
								
							| @@ -20,8 +20,20 @@ runit_start() | ||||
| 	service_link="${RC_SVCDIR}/sv/${service_path##*/}" | ||||
| 	ebegin "Starting ${name:-$RC_SVCNAME}" | ||||
| 	ln -snf "${service_path}" "${service_link}" | ||||
| 	sv start "${service_link}" > /dev/null 2>&1 | ||||
| 	eend $? "Failed to start ${name:-$RC_SVCNAME}" | ||||
| 	local i=0 retval=1 | ||||
| 	# it can take upto 5 seconds for runsv to start | ||||
| 	while [ $i -lt 6 ] ; do | ||||
| 		if sv start "${service_link}" > /dev/null 2>&1; then | ||||
| 			retval=0 | ||||
| 			break | ||||
| 		fi | ||||
| 		sleep 1 && i=$(expr $i + 1) | ||||
| 	done | ||||
| 	if [ $retval -eq 1 ]; then | ||||
| 		# clean up the link else sv will keep on trying | ||||
| 		rm "${service_link}" | ||||
| 	fi | ||||
| 	eend $retval "Failed to start ${name:-$RC_SVCNAME}" | ||||
| } | ||||
|  | ||||
| runit_stop() | ||||
|   | ||||
| @@ -22,6 +22,7 @@ | ||||
| #include <time.h> | ||||
| #include <unistd.h> | ||||
| #include <stdio.h> | ||||
| #include <utmp.h> | ||||
| #include <utmpx.h> | ||||
| #include <pwd.h> | ||||
| #include <fcntl.h> | ||||
|   | ||||
| @@ -151,7 +151,7 @@ static char *clean_path(char *path) | ||||
| 	char *ch; | ||||
| 	char *ch2; | ||||
| 	char *str; | ||||
| 	str = xmalloc(strlen(path)); | ||||
| 	str = xmalloc(strlen(path) + 1); | ||||
| 	ch = path; | ||||
| 	ch2 = str; | ||||
| 	while (true) { | ||||
|   | ||||
| @@ -14,7 +14,7 @@ usage_c = files([ | ||||
|   '_usage.c', | ||||
|   ]) | ||||
|  | ||||
| if get_option('selinux').enabled() | ||||
| if selinux_dep.found() | ||||
|   rc_selinux_c = files([ | ||||
|     'rc-selinux.c', | ||||
|     ]) | ||||
| @@ -26,9 +26,6 @@ rc_wtmp_c = files([ | ||||
|   'rc-wtmp.c', | ||||
|   ]) | ||||
|  | ||||
| rc_bindir = rc_libexecdir / 'bin' | ||||
| rc_sbindir = rc_libexecdir / 'sbin' | ||||
|  | ||||
| executable('rc-status', | ||||
|   ['rc-status.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
| @@ -53,7 +50,7 @@ executable('openrc-run', | ||||
|   rc_selinux_c, version_h], | ||||
|   c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, libpam, selinux_dep, util_dep], | ||||
|   dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, selinux_dep, util_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
| @@ -88,7 +85,7 @@ executable('runscript', | ||||
|     rc_selinux_c, version_h], | ||||
|   c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, libpam, util_dep, selinux_dep], | ||||
|   dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, util_dep, selinux_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
| @@ -98,7 +95,7 @@ executable('start-stop-daemon', | ||||
| 	rc_selinux_c, usage_c, version_h], | ||||
|   c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, libpam, util_dep, selinux_dep], | ||||
|   dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, util_dep, selinux_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
| @@ -108,7 +105,7 @@ executable('supervise-daemon', | ||||
|     usage_c, version_h], | ||||
|   c_args : [cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, libpam, util_dep, selinux_dep], | ||||
|   dependencies: [dl_dep, pam_dep, util_dep, selinux_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
| @@ -171,7 +168,7 @@ executable('checkpath', | ||||
|   c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [libpam, selinux_dep], | ||||
|   dependencies: [audit_dep, pam_dep, pam_misc_dep, selinux_dep], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
|   | ||||
| @@ -20,6 +20,7 @@ | ||||
| #include <stdlib.h> | ||||
| #include <string.h> | ||||
| #include <unistd.h> | ||||
| #include <inttypes.h> | ||||
|  | ||||
| #include "einfo.h" | ||||
| #include "queue.h" | ||||
| @@ -128,12 +129,12 @@ static char *get_uptime(const char *service) | ||||
| 			} | ||||
| 			if (diff_days > 0) | ||||
| 				xasprintf(&uptime, | ||||
| 						"%ld day(s) %02ld:%02ld:%02ld (%s)", | ||||
| 						"%"PRId64" day(s) %02"PRId64":%02"PRId64":%02"PRId64" (%s)", | ||||
| 						diff_days, diff_hours, diff_mins, diff_secs, | ||||
| 						start_count); | ||||
| 			else | ||||
| 				xasprintf(&uptime, | ||||
| 						"%02ld:%02ld:%02ld (%s)", | ||||
| 						"%02"PRId64":%02"PRId64":%02"PRId64" (%s)", | ||||
| 						diff_hours, diff_mins, diff_secs, start_count); | ||||
| 		} | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user