Compare commits
	
		
			24 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 002e25a74a | ||
|   | 2ac620cf53 | ||
|   | e9fb5f81cc | ||
|   | 67dfdec43f | ||
|   | fa88750060 | ||
|   | 223550f676 | ||
|   | d6295768ea | ||
|   | 7a15323822 | ||
|   | edb07278af | ||
|   | d07d896aa8 | ||
|   | 80955a691b | ||
|   | 2413f487e2 | ||
|   | 32a8a202d0 | ||
|   | 803ed1badd | ||
|   | 8a6f9d943b | ||
|   | ee8c0c1cc1 | ||
|   | f61e44d110 | ||
|   | 55ceac775c | ||
|   | 7b07c55c86 | ||
|   | 793673df3c | ||
|   | 6219d87071 | ||
|   | 72b5c74290 | ||
|   | aad77d0267 | ||
|   | 99565e359f | 
| @@ -4,8 +4,7 @@ | ||||
| test_task: | ||||
|   freebsd_instance: | ||||
|     matrix: | ||||
|       image: freebsd-13-0-release-amd64 | ||||
|       image: freebsd-12-2-release-amd64 | ||||
|       image: freebsd-12-1-release-amd64 | ||||
|       image: freebsd-11-4-release-amd64 | ||||
|   env: | ||||
|     OS: FreeBSD | ||||
|   | ||||
							
								
								
									
										26
									
								
								.github/workflows/ci-alpine-linux.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								.github/workflows/ci-alpine-linux.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,26 +0,0 @@ | ||||
| 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
									
									
								
							
							
						
						
									
										32
									
								
								.github/workflows/ci-ubuntu.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,32 +0,0 @@ | ||||
| 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 | ||||
| @@ -1,3 +1,3 @@ | ||||
| NAME=		openrc | ||||
| VERSION=	0.44.10 | ||||
| VERSION=	0.43.4 | ||||
| PKG=		${NAME}-${VERSION} | ||||
|   | ||||
							
								
								
									
										11
									
								
								NEWS.md
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								NEWS.md
									
									
									
									
									
								
							| @@ -4,20 +4,11 @@ OpenRC NEWS | ||||
| This file will contain a list of notable changes for each release. Note | ||||
| the information in this file is in reverse order. | ||||
|  | ||||
| ## OpenRC 0.44 | ||||
|  | ||||
| This version is the first to use a meson-based build system. | ||||
| The gnu make build system should now be considered deprecated; it will | ||||
| be removed sometime after 0.44.x. | ||||
|  | ||||
| I have opened a [discussion](https://github.com/OpenRC/openrc/discussions/441) | ||||
| where you can voice concerns about removing it. | ||||
|  | ||||
| ## OpenRC 0.43 | ||||
|  | ||||
| This version changes the behavior of the checkpath helper to address | ||||
| CVE-2018-21269. on Linux systems, We require  non-terminal symbolic links | ||||
| to be owned by root. Since we can't do this on non-linux systems, we do | ||||
| to be owned by root. Since we can't do this on non-linux xystems, we do | ||||
| not dereference non-terminal symbolic links by default. If you need them | ||||
| dereferenced, you should add the "-s" switch to the appropriate | ||||
| checkpath calls. | ||||
|   | ||||
							
								
								
									
										24
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								README.md
									
									
									
									
									
								
							| @@ -4,16 +4,7 @@ OpenRC README | ||||
| OpenRC is a dependency-based init system that works with the | ||||
| system-provided init program, normally `/sbin/init`. | ||||
|  | ||||
| ## building and installing | ||||
|  | ||||
| OpenRC uses the  [meson](http://mesonbuild.com) build system, so use the | ||||
| usual methods for this build system to build and install. | ||||
|  | ||||
| The old build system is still available for the 0.44.x branch, but it is | ||||
| considered deprecated and will be removed. The previous documentation is | ||||
| below. | ||||
|  | ||||
| ## Installation (historical) | ||||
| ## Installation | ||||
|  | ||||
| OpenRC requires GNU make. | ||||
|  | ||||
| @@ -22,7 +13,7 @@ executed using this command: | ||||
|  | ||||
| `make install` | ||||
|  | ||||
| ## Configuration (historical) | ||||
| ## Configuration | ||||
|  | ||||
| You may wish to configure the installation by passing one or more of the | ||||
| below arguments to the make command | ||||
| @@ -53,11 +44,9 @@ SH=/bin/sh | ||||
|  | ||||
| We don't support building a static OpenRC with PAM. | ||||
|  | ||||
| You may need to use `PROGLDFLAGS=-Wl,-Bstatic` on glibc instead of just `-static` | ||||
| (This is now handled by the meson build system). | ||||
| You may need to use `PROGLDFLAGS=-Wl,-Bstatic` on glibc instead of just `-static`. | ||||
|  | ||||
| If you are building OpenRC for a Gentoo Prefix installation, add `MKPREFIX=yes` | ||||
| (this is not supported in the meson build currently, but patches are welcome). | ||||
| If you are building OpenRC for a Gentoo Prefix installation, add `MKPREFIX=yes`. | ||||
|  | ||||
| `PKG_PREFIX` should be set to where packages install to by default. | ||||
|  | ||||
| @@ -87,11 +76,6 @@ Obviously, if you're installing this onto a system that does not use | ||||
| OpenRC by default then you may wish to backup the above listed files, | ||||
| remove them and then install so that the OS hooks into OpenRC. | ||||
|  | ||||
| ## Discussions | ||||
|  | ||||
| We are testing [discussions](https://github.com/OpenRC/openrc/discussions), so | ||||
| feel free to open topics there. | ||||
|  | ||||
| ## Reporting Bugs | ||||
|  | ||||
| Please report bugs on our [bug tracker](http://github.com/OpenRC/openrc/issues). | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| OpenRC Network Ideals | ||||
| ===================== | ||||
| --------------------- | ||||
| 
 | ||||
| The new style networking for OpenRC is very simplistic - provide a basic means | ||||
| of configuring static interface address and routes whilst allowing the | ||||
| @@ -1,10 +0,0 @@ | ||||
| bash_completions = [ | ||||
|   'openrc', | ||||
|   'openrc-service-script', | ||||
|   'rc-service', | ||||
|   'rc-status', | ||||
|   'rc-update', | ||||
|   ] | ||||
|  | ||||
| install_data(bash_completions, | ||||
|   install_dir : get_option('datadir') / 'bash-completion/completions') | ||||
| @@ -1,59 +0,0 @@ | ||||
| conf_d_dir = get_option('sysconfdir') / 'conf.d' | ||||
|  | ||||
| conf_common = [ | ||||
|   'bootmisc', | ||||
|   'fsck', | ||||
|   'hostname', | ||||
|   'localmount', | ||||
|   'netmount', | ||||
|   'swap', | ||||
|   'urandom', | ||||
|   ] | ||||
|  | ||||
| conf_net = [ | ||||
|   'network', | ||||
|   'staticroute', | ||||
|   ] | ||||
|  | ||||
| conf_FreeBSD = [ | ||||
|   'ipfw', | ||||
|   'modules', | ||||
|   'moused', | ||||
|   'powerd', | ||||
|   'rarpd', | ||||
|   'savecore', | ||||
|   'syscons', | ||||
|   ] | ||||
|  | ||||
| conf_Linux = [ | ||||
|   'agetty', | ||||
|   'consolefont', | ||||
|   'devfs', | ||||
|   'dmesg', | ||||
|   'hwclock', | ||||
|   'keymaps', | ||||
|   'killprocs', | ||||
|   'modules', | ||||
|   'mtab', | ||||
|   'net-online', | ||||
|   ] | ||||
|  | ||||
| conf_NetBSD =  [ | ||||
|   'moused', | ||||
|   'rarpd', | ||||
|   'savecore', | ||||
|   ] | ||||
|  | ||||
| conf_data = conf_common | ||||
| if get_option('newnet') | ||||
|   conf_data = conf_data + conf_net | ||||
| endif | ||||
| if os == 'FreeBSD' | ||||
|   conf_data = conf_data + conf_FreeBSD | ||||
| elif os == 'Linux' | ||||
|   conf_data = conf_data + conf_Linux | ||||
| elif os == 'NetBSD' | ||||
|   conf_data = conf_data + conf_NetBSD | ||||
| endif | ||||
|  | ||||
| install_data(conf_data, install_dir : conf_d_dir) | ||||
| @@ -1,44 +0,0 @@ | ||||
| etc_conf_data = configuration_data() | ||||
| if os == 'FreeBSD' | ||||
|   etc_conf_data.set('TERM', 'cons25') | ||||
| elif os == 'Linux' | ||||
|   etc_conf_data.set('TERM', 'wsvt25') | ||||
| endif | ||||
|  | ||||
| etc_conf_common = [ | ||||
|   'rc.conf', | ||||
|   ] | ||||
|  | ||||
| etc_bin_FreeBSD = [ | ||||
|   'rc.devd', | ||||
|   ] | ||||
|  | ||||
| etc_conf_FreeBSD = [ | ||||
|   'devd.conf', | ||||
|   ] | ||||
|  | ||||
| etc_bin_NetBSD =  [ | ||||
|   'rc.in', | ||||
|   'rc.shutdown.in', | ||||
|   ] | ||||
|  | ||||
| install_data(etc_conf_common, | ||||
|   install_dir : get_option('sysconfdir')) | ||||
|  | ||||
|   if os == 'FreeBSD' | ||||
|   install_data(etc_bin_FreeBSD, | ||||
|     install_dir : get_option('sysconfdir'), | ||||
|     install_mode: 'rwxr-xr-x') | ||||
|   install_data(etc_conf_FreeBSD, | ||||
|     install_dir : get_option('sysconfdir')) | ||||
| endif | ||||
|  | ||||
| if os == 'FreeBSD' or os == 'NetBSD' | ||||
|   foreach file : etc_bin_NetBSD | ||||
|     configure_file(input : file, | ||||
|       output : '@BASENAME@', | ||||
|       configuration : etc_conf_data, | ||||
|       install_dir: get_option('sysconfdir'), | ||||
|       install_mode: 'rwxr-xr-x') | ||||
|   endforeach | ||||
| endif | ||||
| @@ -113,10 +113,8 @@ migrate_to_run() | ||||
|  		rm $src | ||||
|  	elif [ ! -L $src -a -d $src ]; then | ||||
|  		ebegin "Migrating $src to $dst" | ||||
|  		if ! rmdir $src 2>/dev/null; then | ||||
|  			cp -a $src/* $dst/ | ||||
|  			rm -rf $src | ||||
|  		fi | ||||
|  		cp -a $src/* $dst/ | ||||
|  		rm -rf $src | ||||
|  		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 root | ||||
| 	use lvm modules | ||||
| 	after clock lvm modules | ||||
| 	need fsck | ||||
| 	use lvm modules root | ||||
| 	after clock lvm modules root | ||||
| 	keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -1,100 +0,0 @@ | ||||
| init_d_dir = get_option('sysconfdir') / 'init.d' | ||||
|  | ||||
| init_common =  [ | ||||
|   'bootmisc.in', | ||||
|   'fsck.in', | ||||
|   'hostname.in', | ||||
|   'local.in', | ||||
|   'localmount.in', | ||||
|   'loopback.in', | ||||
|   'netmount.in', | ||||
|   'osclock.in', | ||||
|   'root.in', | ||||
|   'savecache.in', | ||||
|   'swap.in', | ||||
|   'swclock.in', | ||||
|   'sysctl.in', | ||||
|   'runsvdir.in', | ||||
|   'urandom.in', | ||||
|   's6-svscan.in', | ||||
|   ] | ||||
|  | ||||
| if get_option('newnet') | ||||
|   init_common = init_common + [ | ||||
|     'network.in', | ||||
|     'staticroute.in', | ||||
|     ] | ||||
| endif | ||||
|  | ||||
| init_Linux =  [ | ||||
|   'agetty.in', | ||||
|   'binfmt.in', | ||||
|   'cgroups.in', | ||||
|   'consolefont.in', | ||||
|   'devfs.in', | ||||
|   'dmesg.in', | ||||
|   'hwclock.in', | ||||
|   'keymaps.in', | ||||
|   'killprocs.in', | ||||
|   'modules.in', | ||||
|   'mount-ro.in', | ||||
|   'mtab.in', | ||||
|   'numlock.in', | ||||
|   'procfs.in', | ||||
|   'net-online.in', | ||||
|   'save-keymaps.in', | ||||
|   'save-termencoding.in', | ||||
|   'sysfs.in', | ||||
|   'termencoding.in', | ||||
|   ] | ||||
|  | ||||
| init_BSD =  [ | ||||
|   'hostid.in', | ||||
|   'moused.in', | ||||
|   'newsyslog.in', | ||||
|   'pf.in', | ||||
|   'rarpd.in', | ||||
|   'rc-enabled.in', | ||||
|   'rpcbind.in', | ||||
|   'savecore.in', | ||||
|   'syslogd.in', | ||||
|   ] | ||||
|  | ||||
| init_FreeBSD =  [ | ||||
|   'adjkerntz.in', | ||||
|   'devd .in', | ||||
|   'dumpon.in', | ||||
|   'encswap.in', | ||||
|   'ipfw.in', | ||||
|   'modules.in', | ||||
|   'mixer.in', | ||||
|   'nscd.in', | ||||
|   'powerd.in', | ||||
|   'syscons.in', | ||||
|   ] | ||||
|  | ||||
| init_NetBSD =  [ | ||||
|   'devdb.in', | ||||
|   'swap-blk.in', | ||||
|   'ttys.in', | ||||
|   'wscons.in', | ||||
|   ] | ||||
|  | ||||
| init_data = init_common | ||||
| if os == 'Dragonfly' | ||||
|   init_data = init_data + init_BSD | ||||
| elif os == 'FreeBSD' or os == 'Gnu-kFreeBSD' | ||||
|   init_data = init_data + init_BSD + init_FreeBSD | ||||
| elif os == 'Linux' | ||||
|   init_data = init_data + init_Linux | ||||
| elif os == 'NetBSD' | ||||
|   init_data = init_data + init_BSD + init_NetBSD | ||||
|   endif | ||||
|  | ||||
| foreach init_d_file : init_data | ||||
|   configure_file(input : init_d_file, | ||||
|     output : '@BASENAME@', | ||||
|     configuration : init_d_conf_data, | ||||
|     install_dir: init_d_dir, | ||||
|     install_mode: 'rwxr-xr-x') | ||||
| endforeach | ||||
| @@ -21,13 +21,9 @@ depend() | ||||
|  | ||||
| start_pre() | ||||
| { | ||||
| 	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 | ||||
| 	einfo "Creating s6 scan directory" | ||||
| 	checkpath -d -m 0755 "$RC_SVCDIR"/s6-scan | ||||
| 	return $? | ||||
| } | ||||
|  | ||||
| stop_post() | ||||
|   | ||||
| @@ -1,7 +0,0 @@ | ||||
| local_d_dir = get_option('sysconfdir') / 'local.d' | ||||
|  | ||||
| local_data =  [ | ||||
|   'README' | ||||
|   ] | ||||
|  | ||||
| install_data(local_data, install_dir : local_d_dir) | ||||
| @@ -1,34 +0,0 @@ | ||||
| man3 = [ | ||||
|   'einfo.3', | ||||
|   'rc_config.3', | ||||
|   'rc_deptree.3', | ||||
|   'rc_find_pids.3', | ||||
|   'rc_plugin_hook.3', | ||||
|   'rc_runlevel.3', | ||||
|   'rc_service.3', | ||||
|   'rc_stringlist.3', | ||||
|   ] | ||||
|  | ||||
| man8 = [ | ||||
|   'openrc.8', | ||||
|   'openrc-run.8', | ||||
|   'rc-service.8', | ||||
|   'rc-status.8', | ||||
|   'rc-update.8', | ||||
|   'start-stop-daemon.8', | ||||
|   'supervise-daemon.8', | ||||
|   ] | ||||
|  | ||||
| if os == 'Linux' | ||||
|   man8 = man8 + [ | ||||
|     'rc-sstat.8', | ||||
|     'openrc-init.8', | ||||
|     'openrc-shutdown.8', | ||||
|     ] | ||||
| endif | ||||
|  | ||||
| install_data(man3, | ||||
|   install_dir : get_option('mandir') / 'man3') | ||||
| install_data(man8, | ||||
|   install_dir : get_option('mandir') / 'man8') | ||||
| meson.add_install_script('meson_man_links.sh', get_option('mandir'), man3 + man8) | ||||
| @@ -1,20 +0,0 @@ | ||||
| #!/bin/sh | ||||
|  | ||||
| get_links() { | ||||
| 	sed -e 's/ ,//g' \ | ||||
| 		-e '/^\.Sh NAME$/,/\.Sh/ s/\.Nm //p' \ | ||||
| 		-n ${MESON_SOURCE_ROOT}/man/${1} | ||||
| } | ||||
|  | ||||
| MANDIR="$1" | ||||
| shift | ||||
| for man in $@; do | ||||
| 	prefix=${man%%.*} | ||||
| 	suffix=${man#*.} | ||||
| 	links=$(get_links ${man}) | ||||
| 	for link in ${links}; do | ||||
| 		if [ "${link}" != "${prefix}" ]; then | ||||
| 			ln -sf ${man} ${MESON_INSTALL_DESTDIR_PREFIX}/${MANDIR}/man${suffix}/${link}.${suffix} | ||||
| 		fi | ||||
| 	done | ||||
| done | ||||
| @@ -104,6 +104,8 @@ supervisor=s6. | ||||
| or set | ||||
| supervisor=supervise-daemon | ||||
| to use supervise-daemon. | ||||
| Note that supervise-daemon is still in early development, so it is | ||||
| considered experimental. | ||||
| .It Ar s6_service_path | ||||
| The path to the s6 service directory if you are monitoring this service | ||||
| with S6. The default is /var/svc.d/${RC_SVCNAME}. | ||||
|   | ||||
| @@ -156,10 +156,6 @@ The same thing as | ||||
| but with the standard error output. | ||||
| .El | ||||
| .Sh ENVIRONMENT | ||||
| .Va SSD_IONICELEVEL | ||||
| can also set the IO scheduling priority of the daemon, but the command line | ||||
| option takes precedence. | ||||
| .Pp | ||||
| .Va SSD_NICELEVEL | ||||
| can also set the scheduling priority of the daemon, but the command line | ||||
| option takes precedence. | ||||
|   | ||||
							
								
								
									
										212
									
								
								meson.build
									
									
									
									
									
								
							
							
						
						
									
										212
									
								
								meson.build
									
									
									
									
									
								
							| @@ -1,212 +0,0 @@ | ||||
| project('OpenRC', 'c', | ||||
|   version : '0.44.10', | ||||
|   license: 'BSD-2', | ||||
|   default_options : [ | ||||
|     'c_std=c99', | ||||
| 	'prefix=/usr', | ||||
|     'warning_level=3', | ||||
|     ], | ||||
|   meson_version : '>=0.49.0') | ||||
|  | ||||
| cc = meson.get_compiler('c') | ||||
|  | ||||
| audit_dep = dependency('audit', required : get_option('audit')) | ||||
| if audit_dep.found() | ||||
|   cc_audit_flags = '-DHAVE_AUDIT' | ||||
|   else | ||||
|   cc_audit_flags = [] | ||||
|   endif | ||||
|  | ||||
| if get_option('branding') != '' | ||||
|   cc_branding_flags = '-DBRANDING=' + get_option('branding') | ||||
| else | ||||
|   cc_branding_flags = [] | ||||
| endif | ||||
|  | ||||
| libname = get_option('libdir').split('/')[-1] | ||||
|  | ||||
| option_local_prefix = get_option('local_prefix') | ||||
| if option_local_prefix == '' | ||||
|   local_prefix = get_option('prefix') / 'usr' / 'local' | ||||
| else | ||||
|   local_prefix = option_local_prefix | ||||
| endif | ||||
|  | ||||
| option_os = get_option('os') | ||||
| if option_os == '' | ||||
|   uname = find_program('uname') | ||||
|   r = run_command(uname, '-s') | ||||
|   os = r.stdout().strip() | ||||
|   os = '-'.join(os.split('/')) | ||||
| else | ||||
|   os = option_os | ||||
| endif | ||||
|  | ||||
| pam_dep = dependency('pam', required: false) | ||||
| if not pam_dep.found() | ||||
|   pam_dep = cc.find_library('pam', required: false) | ||||
| endif | ||||
| if pam_dep.found() and get_option('pam') | ||||
|   cc_pam_flags = '-DHAVE_PAM' | ||||
| else | ||||
|   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' | ||||
|     pkg_prefix = '/usr/local' | ||||
|   elif os == 'GNU' or os == 'GNU-kFreeBSD' or os == 'Linux' | ||||
|     pkg_prefix = '/usr' | ||||
|   elif os == 'NetBSD' | ||||
|     pkg_prefix = '/usr/pkg' | ||||
|   endif | ||||
| else | ||||
|   pkg_prefix = option_pkg_prefix | ||||
| endif | ||||
|  | ||||
| if get_option('split-usr') == 'auto' | ||||
|   split_usr = run_command('test', '-L', '/bin').returncode() != 0 | ||||
| else | ||||
|   split_usr = get_option('split-usr') == 'true' | ||||
| endif | ||||
|  | ||||
| rootprefix = get_option('rootprefix') | ||||
| rootprefix_default = '/' | ||||
| if rootprefix == '' | ||||
| rootprefix = rootprefix_default | ||||
| endif | ||||
|  | ||||
| bindir = rootprefix / get_option('bindir') | ||||
| libdir = rootprefix / get_option('libdir') | ||||
| libexecdir = get_option('libexecdir') | ||||
| if os == 'Linux' and libexecdir == 'libexec' | ||||
|   libexecdir = 'lib' | ||||
| endif | ||||
| libexecdir = rootprefix / libexecdir | ||||
| rc_libexecdir = libexecdir / 'rc' | ||||
| rc_bindir = rc_libexecdir / 'bin' | ||||
| rc_sbindir = rc_libexecdir / 'sbin' | ||||
| sbindir = rootprefix / get_option('sbindir') | ||||
|  | ||||
| crypt_dep = [] | ||||
|  | ||||
| selinux_dep = dependency('libselinux', required : get_option('selinux')) | ||||
| pam_misc_dep = [] | ||||
| if selinux_dep.found() | ||||
|   cc_selinux_flags = '-DHAVE_SELINUX' | ||||
|   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 | ||||
|   else | ||||
|     crypt_dep = dependency('libcrypt', required : false) | ||||
|     if not crypt_dep.found() | ||||
|       crypt_dep = cc.find_library('crypt', required : true) | ||||
|     endif | ||||
|   endif | ||||
| else | ||||
|   cc_selinux_flags = [] | ||||
| endif | ||||
|  | ||||
| termcap = get_option('termcap') | ||||
| if termcap != '' | ||||
|   termcap_dep = dependency(termcap) | ||||
|   termcap_flags = '-DHAVE_TERMCAP' | ||||
|   else | ||||
|   termcap_dep = [] | ||||
|   termcap_flags = [] | ||||
| endif | ||||
|  | ||||
| if get_option('buildtype').startswith('debug') | ||||
|   cc_debug_flags = ['-DRC_DEBUG'] | ||||
| else | ||||
|   cc_debug_flags = [] | ||||
| endif | ||||
|  | ||||
| if os == 'Linux' or os == 'GNU-kFreeBSD' | ||||
|   cc_os_flags = ['-D_DEFAULT_SOURCE'] | ||||
| elif os == 'FreeBSD' | ||||
|   cc_os_flags = ['-D_BSD_SOURCE'] | ||||
| elif os == 'GNU' | ||||
|   cc_os_flags = ['-D_DEFAULT_SOURCE', '-DMAXPATHLEN=4096', '-DPATH_MAX=4096'] | ||||
|   endif | ||||
|  | ||||
| # Try and use some good cc flags if we're building from git. We don't use | ||||
| # -pedantic as it will warn about our perfectly valid use of %m in our logger. | ||||
| # We should be using -Wredundant-decls, but our library hidden proto stuff gives | ||||
| # loads of warnings. I don't fully understand it (the hidden proto, not the | ||||
| # warning) so we just silence the warning. | ||||
| cc_warning_flags_test = [ | ||||
|   '-Wcast-align', | ||||
|   '-Wcast-qual', | ||||
|   '-Wdeclaration-after-statement', | ||||
|   '-Wformat=2', | ||||
|   '-Winline', | ||||
|   '-Wmissing-declarations', | ||||
|   '-Wmissing-format-attribute', | ||||
|   '-Wmissing-noreturn', | ||||
|   '-Wmissing-prototypes', | ||||
|   '-Wnested-externs', | ||||
|   '-Wpointer-arith', | ||||
|   '-Wsequence-point', | ||||
|   '-Wshadow', | ||||
|   '-Wwrite-strings', | ||||
|   '-Werror=implicit-function-declaration', | ||||
|   ] | ||||
| cc_warning_flags = cc.get_supported_arguments(cc_warning_flags_test) | ||||
| cc_flags = [cc_debug_flags, cc_os_flags, cc_warning_flags] | ||||
| add_project_arguments(cc_flags, language : 'c') | ||||
|  | ||||
| incdir = include_directories('src/includes') | ||||
| einfo_incdir = include_directories('src/libeinfo') | ||||
| rc_incdir = include_directories('src/librc') | ||||
|  | ||||
| init_d_conf_data = configuration_data() | ||||
| init_d_conf_data.set('SBINDIR', sbindir) | ||||
| init_d_conf_data.set('PKG_PREFIX', pkg_prefix) | ||||
| init_d_conf_data.set('SYSCONFDIR', get_option('sysconfdir')) | ||||
|  | ||||
| dl_dep = cc.find_library('dl', required: false) | ||||
| util_dep = cc.find_library('util', required: false) | ||||
|  | ||||
| if get_option('bash-completions') | ||||
|   subdir('bash-completion') | ||||
| endif | ||||
| subdir('conf.d') | ||||
| subdir('etc') | ||||
| subdir('init.d') | ||||
| subdir('local.d') | ||||
| subdir('man') | ||||
| if get_option('pam') | ||||
| subdir('pam') | ||||
|   endif | ||||
| if get_option('pkgconfig') | ||||
| subdir('pkgconfig') | ||||
|   endif | ||||
| subdir('scripts') | ||||
| subdir('sh') | ||||
| subdir('src') | ||||
| subdir('support') | ||||
| subdir('sysctl.d') | ||||
| if get_option('zsh-completions') | ||||
|   subdir('zsh-completion') | ||||
| endif | ||||
|  | ||||
| meson.add_install_script('tools/meson_runlevels.sh', | ||||
|   os, | ||||
|   get_option('newnet') ? 'yes' : 'no', | ||||
|   rc_libexecdir, | ||||
|   get_option('sysconfdir'), | ||||
|   get_option('sysvinit') ? 'yes' : 'no') | ||||
| meson.add_install_script('tools/meson_final.sh', | ||||
|   rc_libexecdir, | ||||
|   os) | ||||
| @@ -1,37 +0,0 @@ | ||||
| option('audit', type : 'feature', value : 'auto', | ||||
|   description : 'enable libaudit support') | ||||
| option('bash-completions', type : 'boolean', | ||||
|   description : 'install bash completions') | ||||
| option('branding', type : 'string', | ||||
|   description : 'Add branding to OpenRC') | ||||
| option('local_prefix', type : 'string', value : '/usr/local', | ||||
|   description : 'default location of user maintained packages') | ||||
| option('newnet', type : 'boolean', | ||||
|   description : 'build and install our networking scripts') | ||||
| option('os', type : 'combo', | ||||
|   choices : | ||||
|     [ '', 'DragonFly', 'FreeBSD', 'GNU', 'GNU-kFreeBSD', 'Linux', 'NetBSD' ], | ||||
|   description : 'Operating System (autodetected if not specified)') | ||||
| option('pam', type : 'boolean', | ||||
|   description : 'enable PAM support') | ||||
| option('pkg_prefix', type : 'string', | ||||
|   description : 'default location where packages are installed') | ||||
| option('pkgconfig', type : 'boolean', | ||||
|   description : 'build PKGConfig files') | ||||
| option('rootprefix', type : 'string', | ||||
|   description : 'override the root prefix') | ||||
| option('selinux', type : 'feature', value : 'auto', | ||||
|   description : 'enable SELinux support') | ||||
| option('shell', type : 'string', value : '/bin/sh', | ||||
|   description : 'Default posix compatible shell') | ||||
| option('split-usr', type : 'combo', | ||||
|   choices : ['auto', 'true', 'false'], | ||||
|   description : '''/bin, /sbin aren't symlinks into /usr''') | ||||
| option('sysvinit', type : 'boolean', value : false, | ||||
|   description : 'enable SysVinit compatibility (linux only)') | ||||
| option('termcap', type : 'combo', | ||||
|   choices : | ||||
|     [ '', 'ncurses', 'termcap' ], | ||||
|   description : 'the termcap library to use') | ||||
| option('zsh-completions', type : 'boolean', | ||||
|   description : 'install zsh completions') | ||||
| @@ -1,9 +0,0 @@ | ||||
| pam_dir =	get_option('sysconfdir') / 'pam.d' | ||||
|  | ||||
| pam_files = [ | ||||
|   'start-stop-daemon', | ||||
|   'supervise-daemon', | ||||
|   ] | ||||
|  | ||||
| install_data(pam_files, | ||||
|   install_dir : pam_dir) | ||||
| @@ -1,6 +0,0 @@ | ||||
| #%PAM-1.0 | ||||
|  | ||||
| auth            required        pam_permit.so | ||||
| account         required        pam_permit.so | ||||
| password        required        pam_deny.so | ||||
| session         optional        pam_limits.so | ||||
| @@ -1,6 +0,0 @@ | ||||
| #%PAM-1.0 | ||||
|  | ||||
| auth            required        pam_permit.so | ||||
| account         required        pam_permit.so | ||||
| password        required        pam_deny.so | ||||
| session         optional        pam_limits.so | ||||
| @@ -1,22 +0,0 @@ | ||||
| pkgconfig_dir =	get_option('libdir') / 'pkgconfig' | ||||
|  | ||||
| pkgconfig_conf_data = configuration_data() | ||||
| if rootprefix != '/' | ||||
|   pkgconfig_conf_data.set('PREFIX', rootprefix) | ||||
| else | ||||
|   pkgconfig_conf_data.set('PREFIX', '') | ||||
| endif | ||||
| pkgconfig_conf_data.set('LIB', get_option('libdir')) | ||||
| pkgconfig_conf_data.set('VERSION', meson.project_version()) | ||||
|  | ||||
| pkgconfig_files = [ | ||||
|   'einfo.pc.in', | ||||
|   'openrc.pc.in', | ||||
|   ] | ||||
|  | ||||
| foreach file : pkgconfig_files | ||||
|   configure_file(input : file, | ||||
|     output : '@BASENAME@', | ||||
|     configuration : pkgconfig_conf_data, | ||||
|     install_dir : pkgconfig_dir) | ||||
| endforeach | ||||
| @@ -1,45 +0,0 @@ | ||||
| script_conf_data = configuration_data() | ||||
| script_conf_data.set('SBINDIR', sbindir) | ||||
|  | ||||
| script_dir = rc_libexecdir / 'bin' | ||||
|  | ||||
| scripts_internal = [ | ||||
|   'on_ac_power', | ||||
|   ] | ||||
|    | ||||
| scripts_Linux = [ | ||||
|   'rc-sstat.in', | ||||
|   ] | ||||
|  | ||||
| scripts_sysvinit = [ | ||||
|   'halt.in', | ||||
|   'poweroff.in', | ||||
|   'shutdown.in', | ||||
|   'reboot.in', | ||||
|   ] | ||||
|  | ||||
| install_data(scripts_internal, | ||||
|   install_dir : script_dir, | ||||
|   install_mode: 'rwxr-xr-x') | ||||
|  | ||||
| if os == 'Linux' | ||||
|   foreach file : scripts_Linux | ||||
|     configure_file(input : file, | ||||
|       output : '@BASENAME@', | ||||
|       configuration : script_conf_data, | ||||
|       install_dir: script_dir, | ||||
|       install_mode: 'rwxr-xr-x') | ||||
|   endforeach | ||||
|   if get_option('sysvinit') | ||||
|     foreach file : scripts_sysvinit | ||||
|       configure_file(input : file, | ||||
|         output : '@BASENAME@', | ||||
|         configuration : script_conf_data, | ||||
| 	    install_dir: script_dir, | ||||
|         install_mode: 'rwxr-xr-x') | ||||
|     endforeach | ||||
|   endif | ||||
| endif | ||||
|  | ||||
| meson.add_install_script('meson_script_links.sh', rc_libexecdir, | ||||
| 	sbindir) | ||||
| @@ -1,19 +0,0 @@ | ||||
| #!/bin/sh | ||||
|  | ||||
| set -e | ||||
| set -u | ||||
|  | ||||
| rc_libexecdir="$1" | ||||
| sbindir="$2" | ||||
| binaries=" halt poweroff rc-sstat reboot shutdown" | ||||
| for f in $binaries; do | ||||
| 	if [ -x "${DESTDIR}${rc_libexecdir}/bin/${f}"  ]; then | ||||
| 		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 "${sbindir}/openrc-init" \ | ||||
| 		"${DESTDIR}${sbindir}/init" | ||||
| fi | ||||
| @@ -1,84 +0,0 @@ | ||||
| sh_conf_data = configuration_data() | ||||
| if rootprefix == '/' | ||||
|   sh_conf_data.set('PREFIX', '') | ||||
|   else | ||||
|   sh_conf_data.set('PREFIX', rootprefix) | ||||
| endif | ||||
| sh_conf_data.set('BINDIR', bindir) | ||||
| sh_conf_data.set('LIBEXECDIR', rc_libexecdir) | ||||
| sh_conf_data.set('LOCAL_PREFIX', local_prefix) | ||||
| sh_conf_data.set('PKG_PREFIX', pkg_prefix) | ||||
| sh_conf_data.set('SBINDIR', sbindir) | ||||
| sh_conf_data.set('SHELL', get_option('shell')) | ||||
| sh_conf_data.set('SYSCONFDIR', get_option('sysconfdir')) | ||||
|  | ||||
| sh_dir = rc_libexecdir / 'sh' | ||||
|  | ||||
| sh = [ | ||||
|   'rc-functions.sh', | ||||
|   'rc-mount.sh', | ||||
|   'runit.sh', | ||||
|   's6.sh', | ||||
|   'start-stop-daemon.sh', | ||||
|   'supervise-daemon.sh', | ||||
|   ] | ||||
|  | ||||
| sh_config = [ | ||||
|   'functions.sh.in', | ||||
|   ] | ||||
|  | ||||
| scripts_config = [ | ||||
|   'gendepends.sh.in', | ||||
|   'openrc-run.sh.in', | ||||
|   ] | ||||
|  | ||||
| if os == 'Linux' | ||||
|   sh += [ | ||||
|     'rc-cgroup.sh', | ||||
|     ] | ||||
|   scripts_config += [ | ||||
|     'binfmt.sh.in', | ||||
|     'cgroup-release-agent.sh.in', | ||||
|    ] | ||||
|   scripts_config_os = [ | ||||
|     ['init-early.sh.Linux.in', 'init-early.sh'], | ||||
|     ['init.sh.Linux.in', 'init.sh'], | ||||
|     ] | ||||
| elif os == 'GNU' | ||||
|   scripts_config_os = [ | ||||
|     ['init.sh.GNU.in', 'init.sh'], | ||||
|     ] | ||||
| elif os == 'Gnu-KFreeBSD' | ||||
|   scripts_config_os = [ | ||||
|     ['init.sh.GNU-kFreeBSD.in', 'init.sh'], | ||||
|     ] | ||||
| else | ||||
|   scripts_config_os = [ | ||||
|     ['init.sh.BSD.in', 'init.sh'], | ||||
|     ] | ||||
| endif | ||||
|  | ||||
| install_data(sh, | ||||
|   install_dir : sh_dir) | ||||
| foreach file : sh_config | ||||
|   configure_file(input : file, | ||||
|     output : '@BASENAME@', | ||||
|     configuration : sh_conf_data, | ||||
|     install_dir : sh_dir) | ||||
| endforeach | ||||
|  | ||||
| foreach file : scripts_config | ||||
|   configure_file(input : file, | ||||
|     output : '@BASENAME@', | ||||
|     configuration : sh_conf_data, | ||||
|     install_dir : sh_dir, | ||||
|     install_mode : 'rwxr-xr-x') | ||||
| endforeach | ||||
|  | ||||
| foreach file : scripts_config_os | ||||
|   configure_file(input : file.get(0), | ||||
|     output : file.get(1), | ||||
|     configuration : sh_conf_data, | ||||
|     install_dir : sh_dir, | ||||
|     install_mode : 'rwxr-xr-x') | ||||
| endforeach | ||||
| @@ -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 -s KILL "${rc_fuser_timeout:-60}" \ | ||||
| 				pids="$(timeout -k 10 -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,20 +20,8 @@ runit_start() | ||||
| 	service_link="${RC_SVCDIR}/sv/${service_path##*/}" | ||||
| 	ebegin "Starting ${name:-$RC_SVCNAME}" | ||||
| 	ln -snf "${service_path}" "${service_link}" | ||||
| 	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}" | ||||
| 	sv start "${service_link}" > /dev/null 2>&1 | ||||
| 	eend $? "Failed to start ${name:-$RC_SVCNAME}" | ||||
| } | ||||
|  | ||||
| runit_stop() | ||||
|   | ||||
| @@ -1,6 +0,0 @@ | ||||
| version_h = vcs_tag( | ||||
|   input : 'version.h.in', | ||||
|   output : 'version.h') | ||||
| version_f = vcs_tag( | ||||
|   input : 'version.in', | ||||
|   output : 'version') | ||||
| @@ -1,18 +0,0 @@ | ||||
| /* | ||||
|  * Copyright (c) 2007-2015 The OpenRC Authors. | ||||
|  * See the Authors file at the top-level directory of this distribution and | ||||
|  * https://github.com/OpenRC/openrc/blob/master/AUTHORS | ||||
|  * | ||||
|  * This file is part of OpenRC. It is subject to the license terms in | ||||
|  * the LICENSE file found in the top-level directory of this | ||||
|  * distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE | ||||
|  * This file may not be copied, modified, propagated, or distributed | ||||
|  *    except according to the terms contained in the LICENSE file. | ||||
|  */ | ||||
|  | ||||
| #ifndef _VERSION_H_ | ||||
| #define _VERSION_H_ | ||||
|  | ||||
| #define VERSION "@VCS_TAG@" | ||||
|  | ||||
| #endif | ||||
| @@ -1 +0,0 @@ | ||||
| @VCS_TAG@ | ||||
| @@ -1,12 +0,0 @@ | ||||
| libeinfo_version = '1' | ||||
|  | ||||
| libeinfo = library('einfo', ['libeinfo.c'], | ||||
|   c_args : termcap_flags, | ||||
|   include_directories : incdir, | ||||
|   dependencies : termcap_dep, | ||||
|   link_depends : 'einfo.map', | ||||
|   version : libeinfo_version, | ||||
|   install : true, | ||||
|   install_dir : libdir) | ||||
|  | ||||
| install_headers('einfo.h') | ||||
| @@ -15,8 +15,6 @@ | ||||
|  *    except according to the terms contained in the LICENSE file. | ||||
|  */ | ||||
|  | ||||
| #include <signal.h> | ||||
|  | ||||
| #include "queue.h" | ||||
| #include "librc.h" | ||||
|  | ||||
|   | ||||
| @@ -16,7 +16,6 @@ | ||||
|  */ | ||||
|  | ||||
| #include <fnmatch.h> | ||||
| #include <stdio.h> | ||||
|  | ||||
| #include "queue.h" | ||||
| #include "librc.h" | ||||
|   | ||||
| @@ -1,33 +0,0 @@ | ||||
| rc_h_conf_data = configuration_data() | ||||
| if rootprefix == '/' | ||||
|   rc_h_conf_data.set('PREFIX', '') | ||||
|   else | ||||
|   rc_h_conf_data.set('PREFIX', rootprefix) | ||||
| 	endif | ||||
| rc_h_conf_data.set('LIB', libname) | ||||
| rc_h_conf_data.set('LIBEXECDIR', rc_libexecdir) | ||||
| rc_h_conf_data.set('LOCAL_PREFIX', local_prefix) | ||||
| rc_h_conf_data.set('PKG_PREFIX', pkg_prefix) | ||||
| rc_h_conf_data.set('SYSCONFDIR', get_option('sysconfdir')) | ||||
|  | ||||
| librc_version = '1' | ||||
|  | ||||
| librc_sources = [ | ||||
|   'librc.c', | ||||
|   'librc-daemon.c', | ||||
|   'librc-depend.c', | ||||
|   'librc-misc.c', | ||||
|   'librc-stringlist.c', | ||||
|   ] | ||||
|  | ||||
| rc_h = configure_file(input : 'rc.h.in', output : 'rc.h', | ||||
|   configuration : rc_h_conf_data) | ||||
|  | ||||
| librc = library('rc', librc_sources, | ||||
|   include_directories : [incdir, einfo_incdir], | ||||
|   link_depends : 'rc.map', | ||||
|   version : librc_version, | ||||
|   install : true, | ||||
|   install_dir : libdir) | ||||
|  | ||||
| install_headers(rc_h) | ||||
| @@ -1,4 +0,0 @@ | ||||
| subdir('common') | ||||
| subdir('libeinfo') | ||||
| subdir('librc') | ||||
| subdir('rc') | ||||
| @@ -22,7 +22,6 @@ | ||||
| #include <time.h> | ||||
| #include <unistd.h> | ||||
| #include <stdio.h> | ||||
| #include <utmp.h> | ||||
| #include <utmpx.h> | ||||
| #include <pwd.h> | ||||
| #include <fcntl.h> | ||||
|   | ||||
| @@ -73,8 +73,7 @@ const char * const longopts_help[] = { | ||||
| }; | ||||
| const char *usagestring = NULL; | ||||
|  | ||||
| static int get_dirfd(char *path, bool symlinks) | ||||
| { | ||||
| static int get_dirfd(char *path, bool symlinks) { | ||||
| 	char *ch; | ||||
| 	char *item; | ||||
| 	char *linkpath = NULL; | ||||
| @@ -151,7 +150,7 @@ static char *clean_path(char *path) | ||||
| 	char *ch; | ||||
| 	char *ch2; | ||||
| 	char *str; | ||||
| 	str = xmalloc(strlen(path) + 1); | ||||
| 	str = xmalloc(strlen(path)); | ||||
| 	ch = path; | ||||
| 	ch2 = str; | ||||
| 	while (true) { | ||||
| @@ -277,7 +276,7 @@ static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode, | ||||
|  | ||||
| 		if (mode && (st.st_mode & 0777) != mode) { | ||||
| 			if ((type != inode_dir) && (st.st_nlink > 1)) { | ||||
| 				eerror("%s: chmod: Too many hard links to %s", applet, path); | ||||
| 				eerror("%s: chmod: %s %s", applet, "Too many hard links to", path); | ||||
| 				close(readfd); | ||||
| 				return -1; | ||||
| 			} | ||||
|   | ||||
| @@ -1,300 +0,0 @@ | ||||
| rc_misc_c = files([ | ||||
|   'rc-misc.c', | ||||
|   ]) | ||||
|  | ||||
| rc_plugin_c = files([ | ||||
|   'rc-plugin.c', | ||||
|   ]) | ||||
|  | ||||
| rc_schedules_c = files([ | ||||
|   'rc-schedules.c', | ||||
|   ]) | ||||
|  | ||||
| usage_c = files([ | ||||
|   '_usage.c', | ||||
|   ]) | ||||
|  | ||||
| if selinux_dep.found() | ||||
|   rc_selinux_c = files([ | ||||
|     'rc-selinux.c', | ||||
|     ]) | ||||
| else | ||||
|   rc_selinux_c = [] | ||||
| endif | ||||
|  | ||||
| rc_wtmp_c = files([ | ||||
|   'rc-wtmp.c', | ||||
|   ]) | ||||
|  | ||||
| executable('rc-status', | ||||
|   ['rc-status.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [util_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: bindir) | ||||
|  | ||||
| executable('openrc', | ||||
|   ['rc.c', 'rc-logger.c', rc_misc_c, rc_plugin_c, usage_c, | ||||
|     version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, util_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('openrc-run', | ||||
|   ['openrc-run.c', rc_misc_c, rc_plugin_c, usage_c,  | ||||
|   rc_selinux_c, version_h], | ||||
|   c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, selinux_dep, util_dep, crypt_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('rc', | ||||
|   ['rc.c', 'rc-logger.c', rc_misc_c, rc_plugin_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, util_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('rc-service', | ||||
|   ['rc-service.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   link_with: [libeinfo, librc], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('rc-update', | ||||
|   ['rc-update.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   link_with: [libeinfo, librc], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('runscript', | ||||
|   ['openrc-run.c', rc_misc_c, usage_c, 'rc-plugin.c', | ||||
|     rc_selinux_c, version_h], | ||||
|   c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, util_dep, selinux_dep, crypt_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('start-stop-daemon', | ||||
|   ['start-stop-daemon.c', 'rc-pipes.c', rc_misc_c, rc_schedules_c, | ||||
| 	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: [audit_dep, dl_dep, pam_dep, pam_misc_dep, util_dep, selinux_dep, crypt_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| executable('supervise-daemon', | ||||
|   ['supervise-daemon.c', rc_misc_c, rc_plugin_c, rc_schedules_c, | ||||
|     usage_c, version_h], | ||||
|   c_args : [cc_branding_flags, cc_pam_flags, cc_selinux_flags], | ||||
|   link_with: [libeinfo, librc], | ||||
|   dependencies: [dl_dep, pam_dep, util_dep, selinux_dep], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   install: true, | ||||
|   install_dir: sbindir) | ||||
|  | ||||
| if os == 'Linux' | ||||
|   executable('openrc-init', | ||||
|     ['openrc-init.c', rc_plugin_c, rc_wtmp_c, version_h], | ||||
|   c_args : cc_selinux_flags, | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo, librc], | ||||
|     dependencies: [dl_dep, selinux_dep], | ||||
|     install: true, | ||||
|     install_dir: sbindir) | ||||
|  | ||||
|   executable('openrc-shutdown', | ||||
|     ['openrc-shutdown.c', 'broadcast.c', 'rc-sysvinit.c', rc_misc_c, | ||||
| 		usage_c, rc_wtmp_c, version_h], | ||||
|     c_args : cc_branding_flags, | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo, librc], | ||||
|     install: true, | ||||
|     install_dir: sbindir) | ||||
| endif | ||||
|  | ||||
| einfo_execs = [ | ||||
|   'einfon', | ||||
|   'einfo', | ||||
|   'ewarnn', | ||||
|   'ewarn', | ||||
|   'eerrorn', | ||||
|   'eerror', | ||||
|   'ebegin', | ||||
|   'eend', | ||||
|   'ewend', | ||||
|   'eindent', | ||||
|   'eoutdent', | ||||
|   'esyslog', | ||||
|   'eval_ecolors', | ||||
|   'ewaitfile', | ||||
|   'veinfo', | ||||
|   'vewarn', | ||||
|   'vebegin', | ||||
|   'veend', | ||||
|   'vewend', | ||||
|   'veindent', | ||||
|   'veoutdent', | ||||
|   ] | ||||
|  | ||||
| foreach exec: einfo_execs | ||||
|   executable(exec, | ||||
|     ['do_e.c', rc_misc_c, version_h], | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo, librc], | ||||
|     install: true, | ||||
|     install_dir: rc_bindir) | ||||
| endforeach | ||||
|  | ||||
| executable('checkpath', | ||||
|   ['checkpath.c', rc_misc_c, usage_c, rc_selinux_c, | ||||
|     version_h], | ||||
|   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: [audit_dep, pam_dep, pam_misc_dep, selinux_dep, crypt_dep], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| executable('fstabinfo', | ||||
|   ['fstabinfo.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo, librc], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| executable('mountinfo', | ||||
|   ['mountinfo.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo, librc], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| executable('rc-depend', | ||||
|   ['rc-depend.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo, librc], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| executable('is_newer_than', | ||||
|   ['is_newer_than.c', rc_misc_c, version_h], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo, librc], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| executable('is_older_than', | ||||
|   ['is_older_than.c', rc_misc_c, version_h], | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo, librc], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| service_execs = [ | ||||
|   'service_starting', | ||||
|   'service_started', | ||||
|   'service_stopping', | ||||
|   'service_stopped', | ||||
|   'service_inactive', | ||||
|   'service_wasinactive', | ||||
|   'service_hotplugged', | ||||
|   'service_started_daemon', | ||||
|   'service_crashed', | ||||
|   ] | ||||
|  | ||||
| foreach exec : service_execs | ||||
|   executable(exec, | ||||
|     ['do_service.c', rc_misc_c, version_h], | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo, librc], | ||||
|     install: true, | ||||
|     install_dir: rc_bindir) | ||||
| endforeach | ||||
|  | ||||
| value_execs = [ | ||||
|   'service_get_value', | ||||
|   'service_set_value', | ||||
|   'get_options', | ||||
|   'save_options', | ||||
|   ] | ||||
|  | ||||
| foreach exec : value_execs | ||||
|   executable(exec, | ||||
|     ['do_value.c', rc_misc_c, version_h], | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo, librc], | ||||
|     install: true, | ||||
|     install_dir: rc_bindir) | ||||
| endforeach | ||||
|  | ||||
| if os == 'Linux' | ||||
|   executable('kill_all', | ||||
| 	  ['kill_all.c', usage_c, version_h], | ||||
|     c_args : cc_branding_flags, | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo,librc], | ||||
|     install: true, | ||||
|     install_dir: rc_bindir) | ||||
|   endif | ||||
|  | ||||
| executable('shell_var', | ||||
|   ['shell_var.c'], | ||||
|   install: true, | ||||
|   install_dir: rc_bindir) | ||||
|  | ||||
| mark_service_execs =	[ | ||||
|   'mark_service_starting', | ||||
|   'mark_service_started', | ||||
|   'mark_service_stopping', | ||||
|   'mark_service_stopped', | ||||
|   'mark_service_inactive', | ||||
|   'mark_service_wasinactive', | ||||
|   'mark_service_hotplugged', | ||||
|   'mark_service_failed', | ||||
|   'mark_service_crashed', | ||||
|   ] | ||||
|  | ||||
| foreach exec : mark_service_execs | ||||
|   executable(exec, | ||||
|     ['do_mark_service.c', rc_misc_c, version_h], | ||||
|     include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|     link_with: [libeinfo,librc], | ||||
|     install: true, | ||||
|     install_dir: rc_sbindir) | ||||
| endforeach | ||||
|  | ||||
| executable('rc-abort', | ||||
|   'rc-abort.c', | ||||
|   include_directories: [einfo_incdir], | ||||
|   link_with: [libeinfo], | ||||
|   install: true, | ||||
|   install_dir: rc_sbindir) | ||||
|  | ||||
| executable('swclock', | ||||
|   ['swclock.c', rc_misc_c, usage_c, version_h], | ||||
|   c_args : cc_branding_flags, | ||||
|   include_directories: [incdir, einfo_incdir, rc_incdir], | ||||
|   link_with: [libeinfo,librc], | ||||
|   install: true, | ||||
|   install_dir: rc_sbindir) | ||||
| @@ -66,7 +66,7 @@ int selinux_util_label(const char *path) | ||||
| 	int retval = 0; | ||||
| 	int enforce; | ||||
| 	struct stat st; | ||||
| 	char *con; | ||||
| 	security_context_t con; | ||||
|  | ||||
| 	enforce = security_getenforce(); | ||||
| 	if (retval < 0) | ||||
|   | ||||
| @@ -20,7 +20,6 @@ | ||||
| #include <stdlib.h> | ||||
| #include <string.h> | ||||
| #include <unistd.h> | ||||
| #include <inttypes.h> | ||||
|  | ||||
| #include "einfo.h" | ||||
| #include "queue.h" | ||||
| @@ -97,12 +96,14 @@ static char *get_uptime(const char *service) | ||||
| { | ||||
| 	RC_SERVICE state = rc_service_state(service); | ||||
| 	char *start_count; | ||||
| 	time_t now; | ||||
| 	char *start_time_string; | ||||
| 	time_t start_time; | ||||
| 	int64_t diff_days; | ||||
| 	int64_t diff_hours; | ||||
| 	int64_t diff_mins; | ||||
| 	int64_t diff_secs; | ||||
| 	time_t time_diff; | ||||
| 	time_t diff_days = (time_t) 0; | ||||
| 	time_t diff_hours = (time_t) 0; | ||||
| 	time_t diff_mins = (time_t) 0; | ||||
| 	time_t diff_secs = (time_t) 0; | ||||
| 	char *uptime = NULL; | ||||
|  | ||||
| 	if (state & RC_SERVICE_STARTED) { | ||||
| @@ -110,21 +111,29 @@ static char *get_uptime(const char *service) | ||||
| 		start_time_string = rc_service_value_get(service, "start_time"); | ||||
| 		if (start_count && start_time_string) { | ||||
| 			start_time = to_time_t(start_time_string); | ||||
| 			diff_secs = (int64_t) difftime(time(NULL), start_time); | ||||
| 			diff_days = diff_secs / 86400; | ||||
| 			diff_secs = diff_secs % 86400; | ||||
| 			diff_hours = diff_secs / 3600; | ||||
| 			diff_secs = diff_secs % 3600; | ||||
| 			diff_mins = diff_secs / 60; | ||||
| 			diff_secs = diff_secs % 60; | ||||
| 			now = time(NULL); | ||||
| 			time_diff = (time_t) difftime(now, start_time); | ||||
| 			diff_secs = time_diff; | ||||
| 			if (diff_secs > (time_t) 86400) { | ||||
| 				diff_days = diff_secs / (time_t) 86400; | ||||
| 				diff_secs %= diff_days * (time_t) 86400; | ||||
| 			} | ||||
| 			if (diff_secs > (time_t) 3600) { | ||||
| 				diff_hours = diff_secs / (time_t) 3600; | ||||
| 				diff_secs %= diff_hours * (time_t) 3600; | ||||
| 			} | ||||
| 			if (diff_secs > (time_t) 60) { | ||||
| 				diff_mins = diff_secs / (time_t) 60; | ||||
| 				diff_secs %= diff_mins * (time_t) 60; | ||||
| 			} | ||||
| 			if (diff_days > 0) | ||||
| 				xasprintf(&uptime, | ||||
| 						"%"PRId64" day(s) %02"PRId64":%02"PRId64":%02"PRId64" (%s)", | ||||
| 						"%ld day(s) %02ld:%02ld:%02ld (%s)", | ||||
| 						diff_days, diff_hours, diff_mins, diff_secs, | ||||
| 						start_count); | ||||
| 			else | ||||
| 				xasprintf(&uptime, | ||||
| 						"%02"PRId64":%02"PRId64":%02"PRId64" (%s)", | ||||
| 						"%02ld:%02ld:%02ld (%s)", | ||||
| 						diff_hours, diff_mins, diff_secs, start_count); | ||||
| 		} | ||||
| 	} | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| /* | ||||
|  * supervise-daemon | ||||
|  * This is a supervisor for daemons. | ||||
|  * This is an experimental supervisor for daemons. | ||||
|  * It will start a deamon and make sure it restarts if it crashes. | ||||
|  */ | ||||
|  | ||||
| @@ -423,8 +423,7 @@ static void child_process(char *exec, char **argv) | ||||
| 		if ((strncmp(env->value, "RC_", 3) == 0 && | ||||
| 			strncmp(env->value, "RC_SERVICE=", 11) != 0 && | ||||
| 			strncmp(env->value, "RC_SVCNAME=", 11) != 0) || | ||||
| 		    strncmp(env->value, "SSD_NICELEVEL=", 14) == 0 || | ||||
| 		    strncmp(env->value, "SSD_IONICELEVEL=", 16) == 0) | ||||
| 		    strncmp(env->value, "SSD_NICELEVEL=", 14) == 0) | ||||
| 		{ | ||||
| 			p = strchr(env->value, '='); | ||||
| 			*p = '\0'; | ||||
| @@ -734,17 +733,6 @@ int main(int argc, char **argv) | ||||
| 		if (sscanf(tmp, "%d", &nicelevel) != 1) | ||||
| 			eerror("%s: invalid nice level `%s' (SSD_NICELEVEL)", | ||||
| 			    applet, tmp); | ||||
| 	if ((tmp = getenv("SSD_IONICELEVEL"))) { | ||||
| 		int n = sscanf(tmp, "%d:%d", &ionicec, &ioniced); | ||||
| 		if (n != 1 && n != 2) | ||||
| 			eerror("%s: invalid ionice level `%s' (SSD_IONICELEVEL)", | ||||
| 			    applet, tmp); | ||||
| 		if (ionicec == 0) | ||||
| 			ioniced = 0; | ||||
| 		else if (ionicec == 3) | ||||
| 			ioniced = 7; | ||||
| 		ionicec <<= 13; /* class shift */ | ||||
| 	} | ||||
|  | ||||
| 	/* Get our user name and initial dir */ | ||||
| 	p = getenv("USER"); | ||||
|   | ||||
| @@ -1,11 +0,0 @@ | ||||
| deptree2dot_dir =	support_dir / 'deptree2dot' | ||||
|  | ||||
| deptree2dot_bin =	['deptree2dot'] | ||||
| deptree2dot_data =	['README.md'] | ||||
|  | ||||
| install_data(deptree2dot_bin, | ||||
|   install_dir : deptree2dot_dir, | ||||
|   install_mode : 'rwxr-xr-x') | ||||
|  | ||||
| install_data(deptree2dot_data, | ||||
|   install_dir : deptree2dot_dir) | ||||
| @@ -9,7 +9,7 @@ | ||||
| # This file may not be copied, modified, propagated, or distributed | ||||
| # except according to the terms contained in the LICENSE file. | ||||
|  | ||||
| command=/sbin/avahi-dnsconfd | ||||
| command=@PKG_PREFIX@/sbin/avahi-dnsconfd | ||||
| command_args="$avahi_dnsconfd_args -D" | ||||
| pidfile=/var/run/avahi-dnsconfd.pid | ||||
| name="Avahi DNS Configuration Daemon" | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| # This file may not be copied, modified, propagated, or distributed | ||||
| # except according to the terms contained in the LICENSE file. | ||||
|  | ||||
| command=/sbin/avahi-daemon | ||||
| command=@PKG_PREFIX@/sbin/avahi-daemon | ||||
| command_args="$avahid_args -D" | ||||
| pidfile=/var/run/avahi-daemon/pid | ||||
| name="Avahi Service Advertisement Daemon" | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| # This file may not be copied, modified, propagated, or distributed | ||||
| # except according to the terms contained in the LICENSE file. | ||||
|  | ||||
| command=/bin/dbus-daemon | ||||
| command=@PKG_PREFIX@/bin/dbus-daemon | ||||
| pidfile=/var/run/dbus/pid | ||||
| command_args="${dbusd_args---system}" | ||||
| name="Message Bus Daemon" | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| # This file may not be copied, modified, propagated, or distributed | ||||
| # except according to the terms contained in the LICENSE file. | ||||
|  | ||||
| command=/sbin/dnsmasq | ||||
| command=@PKG_PREFIX@/sbin/dnsmasq | ||||
| command_args=$dnsmasq_args | ||||
| pidfile=/var/run/dnsmasq.pid | ||||
| required_files=/etc/dnsmasq.conf | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| # This file may not be copied, modified, propagated, or distributed | ||||
| # except according to the terms contained in the LICENSE file. | ||||
|  | ||||
| command=/sbin/hald | ||||
| command=@PKG_PREFIX@/sbin/hald | ||||
| pidfile=/var/run/hald/hald.pid | ||||
| command_args=$hald_args | ||||
| name="Hardware Abstraction Layer Daemon" | ||||
|   | ||||
| @@ -1,30 +0,0 @@ | ||||
| init_d_examples_dir = support_dir / 'init.d.examples' | ||||
|  | ||||
| init_d_examples =  [ | ||||
|   'avahi-dnsconfd.in', | ||||
|   'avahid.in', | ||||
|   'dhcpcd.in', | ||||
|   'dbus.in', | ||||
|   'hald.in', | ||||
|   'named.in', | ||||
|   'ntpd.in', | ||||
|   'openvpn.in', | ||||
|   'polkitd.in', | ||||
|   'sshd.in', | ||||
|   'wpa_supplicant.in', | ||||
|   ] | ||||
|  | ||||
| init_d_examples_data = [ | ||||
|   'README.md', | ||||
|   ] | ||||
|  | ||||
| foreach init_d_example: init_d_examples | ||||
|   configure_file(input : init_d_example, | ||||
|     output : '@BASENAME@', | ||||
|     configuration : init_d_conf_data, | ||||
|     install_dir : init_d_examples_dir, | ||||
|     install_mode : 'rwxr-xr-x') | ||||
| endforeach | ||||
|  | ||||
| install_data(init_d_examples_data, | ||||
|   install_dir : init_d_examples_dir) | ||||
| @@ -12,10 +12,10 @@ | ||||
| vpn=${RC_SVCNAME#*.} | ||||
| name="OpenVPN" | ||||
| [ "$vpn" != openvpn ] && name="$name ($vpn)" | ||||
| command=/sbin/openvpn | ||||
| command=@PKG_PREFIX@/sbin/openvpn | ||||
|  | ||||
| pidfile=/var/run/"$RC_SVCNAME".pid | ||||
| : ${openvpn_dir:=/etc/openvpn} | ||||
| : ${openvpn_dir:=@PKG_PREFIX@/etc/openvpn} | ||||
| : ${openvpn_config:=$openvpn_dir/$vpn.conf} | ||||
| command_args="$openvpn_args --daemon --config $openvpn_config" | ||||
| command_args="$command_args --writepid $pidfile" | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| # This file may not be copied, modified, propagated, or distributed | ||||
| # except according to the terms contained in the LICENSE file. | ||||
|  | ||||
| command=/sbin/polkitd | ||||
| command=@PKG_PREFIX@/sbin/polkitd | ||||
| pidfile=/var/run/polkitd/polkitd.pid | ||||
| command_args="$polkitd_args" | ||||
| name="PolicyKit Daemon" | ||||
|   | ||||
| @@ -1,7 +0,0 @@ | ||||
| support_dir = get_option('datadir') / meson.project_name().to_lower() | ||||
| support_dir = support_dir / 'support' | ||||
|  | ||||
| subdir('deptree2dot') | ||||
| subdir('init.d.examples') | ||||
| subdir('openvpn') | ||||
| subdir('sysvinit') | ||||
| @@ -1,10 +0,0 @@ | ||||
| openvpn_dir = support_dir / 'openvpn' | ||||
|  | ||||
| openvpn_bin =  ['down.sh', 'up.sh'] | ||||
| openvpn_data =  ['README.md'] | ||||
|  | ||||
| install_data(openvpn_bin, | ||||
|   install_dir : openvpn_dir, | ||||
|   install_mode : 'rwxr-xr-x') | ||||
| install_data(openvpn_data, | ||||
|   install_dir : openvpn_dir) | ||||
| @@ -1,6 +0,0 @@ | ||||
| sysvinit_dir =	support_dir / 'sysvinit' | ||||
|  | ||||
| sysvinit_data =	['halt.sh', 'inittab', 'README.md'] | ||||
|  | ||||
| install_data(sysvinit_data, | ||||
| 	install_dir : sysvinit_dir) | ||||
| @@ -1,6 +0,0 @@ | ||||
| sysctl_data =  [ | ||||
|   'README', | ||||
|   ] | ||||
|  | ||||
| sysctldir = get_option('sysconfdir') / 'sysctl.d' | ||||
| install_data(sysctl_data, install_dir : sysctldir) | ||||
| @@ -1,13 +0,0 @@ | ||||
| #!/bin/sh | ||||
|  | ||||
| set -e | ||||
| set -u | ||||
|  | ||||
| rc_libexecdir="$1" | ||||
| os="$2" | ||||
|  | ||||
| if [ ${os} != Linux ]; then | ||||
| 	install -d "${DESTDIR}/${rc_libexecdir}"/init.d | ||||
| fi | ||||
| install -d "${DESTDIR}/${rc_libexecdir}"/tmp | ||||
| install -m 644 "${MESON_BUILD_ROOT}/src/common/version" "${DESTDIR}/${rc_libexecdir}" | ||||
| @@ -1,101 +0,0 @@ | ||||
| #!/bin/sh | ||||
|  | ||||
| set -e | ||||
| set -u | ||||
|  | ||||
| os="$1" | ||||
| net="$2" | ||||
| rc_libexecdir="$3" | ||||
| sysconfdir="$4" | ||||
| sysvinit="$5" | ||||
|  | ||||
| init_d_dir="${sysconfdir}/init.d" | ||||
| leveldir="${sysconfdir}/runlevels" | ||||
| sysinitdir="${leveldir}/sysinit" | ||||
| bootdir="${leveldir}/boot" | ||||
| defaultdir="${leveldir}/default" | ||||
| nonetworkdir="${leveldir}/nonetwork" | ||||
| shutdowndir="${leveldir}/shutdown" | ||||
|  | ||||
| sysinit= | ||||
| case "${os}" in | ||||
| 	Linux) | ||||
| 		sysinit="${sysinit} cgroups devfs dmesg sysfs" | ||||
| 		;; | ||||
| esac | ||||
|  | ||||
| boot="bootmisc fsck hostname localmount loopback root swap sysctl urandom" | ||||
| if [ "${net}" = yes ]; then | ||||
| 	boot="${boot} network staticroute" | ||||
| fi | ||||
| boot_BSD="hostid newsyslog savecore syslogd" | ||||
|  | ||||
| case "${os}" in | ||||
| 	DragonFly) | ||||
| 		boot="${boot} ${boot_BSD}" | ||||
| 		;; | ||||
| 	FreeBSD|GNU-kFreeBSD) | ||||
| 		boot="${boot} ${boot_BSD} adjkerntz dumpon modules syscons" | ||||
| 		;; | ||||
| 	Linux) | ||||
| 		boot="${boot} binfmt hwclock keymaps modules mtab procfs | ||||
| 		save-keymaps save-termencoding termencoding" | ||||
| 		;; | ||||
| 	NetBSD) | ||||
| 		boot="${boot} ${boot_BSD} devdb swap-blk tys wscons" | ||||
| 		;; | ||||
| esac | ||||
|  | ||||
| default="local netmount" | ||||
|  | ||||
| nonetwork="local" | ||||
|  | ||||
| shutdown="savecache" | ||||
| case "${os}" in | ||||
| 	Linux) | ||||
| 		shutdown="${shutdown} killprocs mount-ro" | ||||
| 		;; | ||||
| esac | ||||
|  | ||||
| if ! test -d "${DESTDIR}${sysinitdir}"; then | ||||
| 	install -d "${DESTDIR}${sysinitdir}" | ||||
| 	for x in ${sysinit}; do | ||||
| 		ln -snf "${init_d_dir}/$x" "${DESTDIR}${sysinitdir}/$x" | ||||
| 	done | ||||
| fi | ||||
|  | ||||
| if ! test -d "${DESTDIR}${bootdir}"; then | ||||
| 	install -d "${DESTDIR}${bootdir}" | ||||
| 	for x in ${boot}; do | ||||
| 		ln -snf "${init_d_dir}/$x" "${DESTDIR}${bootdir}/$x" | ||||
| 	done | ||||
| fi | ||||
|  | ||||
| if ! test -d "${DESTDIR}${defaultdir}"; then | ||||
| 	install -d "${DESTDIR}${defaultdir}" | ||||
| 	for x in ${default}; do | ||||
| 		ln -snf "${init_d_dir}/$x" "${DESTDIR}${defaultdir}/$x" | ||||
| 	done | ||||
| fi | ||||
|  | ||||
| if ! test -d "${DESTDIR}${nonetworkdir}"; then | ||||
| 	install -d "${DESTDIR}${nonetworkdir}" | ||||
| 	for x in ${nonetwork}; do | ||||
| 		ln -snf "${init_d_dir}/$x" "${DESTDIR}${nonetworkdir}/$x" | ||||
| 	done | ||||
| fi | ||||
|  | ||||
| if ! test -d "${DESTDIR}${shutdowndir}"; then | ||||
| 	install -d "${DESTDIR}${shutdowndir}" | ||||
| 	for x in ${shutdown}; do | ||||
| 		ln -snf "${init_d_dir}/$x" "${DESTDIR}${shutdowndir}/$x" | ||||
| 	done | ||||
| fi | ||||
| if test "${sysvinit}" = yes && test "${os}" = Linux; then \ | ||||
| 	for x in tty1 tty2 tty3 tty4 tty5 tty6; do | ||||
| 		ln -snf "${init_d_dir}/agetty" "${DESTDIR}/${init_d_dir}/agetty.$x" | ||||
| 		ln -snf "${init_d_dir}/agetty.$x" "${DESTDIR}/${defaultdir}/agetty.$x" | ||||
| 	done; | ||||
| fi | ||||
|  | ||||
| ln -snf "${rc_libexecdir}"/sh/functions.sh "${DESTDIR}/${init_d_dir}" | ||||
| @@ -1,9 +0,0 @@ | ||||
| zsh_completions = [ | ||||
|   '_openrc', | ||||
|   '_rc-service', | ||||
|   '_rc-status', | ||||
|   '_rc-update', | ||||
|   ] | ||||
|  | ||||
| install_data(zsh_completions, | ||||
|   install_dir : get_option('datadir') / 'zsh/site-functions') | ||||
		Reference in New Issue
	
	Block a user