Compare commits
	
		
			27 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					eedafe0f1a | ||
| 
						 | 
					7f634589f1 | ||
| 
						 | 
					291cddb72b | ||
| 
						 | 
					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,12 +4,12 @@
 | 
			
		||||
test_task:
 | 
			
		||||
  freebsd_instance:
 | 
			
		||||
    matrix:
 | 
			
		||||
      image: freebsd-13-0-release-amd64
 | 
			
		||||
      image: freebsd-12-3-release-amd64
 | 
			
		||||
      image: freebsd-12-1-release-amd64
 | 
			
		||||
      image: freebsd-11-4-release-amd64
 | 
			
		||||
  env:
 | 
			
		||||
    OS: FreeBSD
 | 
			
		||||
  procfs_script: >
 | 
			
		||||
    [ -f /proc/curproc ] || mount -t procfs proc /proc
 | 
			
		||||
  pkg_install_script: pkg install -y bash gawk gsed meson
 | 
			
		||||
  pkg_install_script: pkg install -y bash gawk gmake gsed
 | 
			
		||||
  gsed_hack_script: rm /usr/bin/sed && ln -s /usr/local/bin/gsed /usr/bin/sed
 | 
			
		||||
  test_script: bash ci/cirrus.sh
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										31
									
								
								.github/workflows/ci-alpine-linux.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										31
									
								
								.github/workflows/ci-alpine-linux.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,31 +0,0 @@
 | 
			
		||||
name: ci_alpine_linux
 | 
			
		||||
 | 
			
		||||
on: [push, pull_request]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
 | 
			
		||||
  alpine:
 | 
			
		||||
    name: Alpine Linux
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    container: alpine:latest
 | 
			
		||||
    strategy:
 | 
			
		||||
      fail-fast: false
 | 
			
		||||
      matrix:
 | 
			
		||||
        compiler:
 | 
			
		||||
          - gcc
 | 
			
		||||
    env:
 | 
			
		||||
      CC: ${{ matrix.compiler }}
 | 
			
		||||
    steps:
 | 
			
		||||
      - run: >-
 | 
			
		||||
          apk --no-cache add \
 | 
			
		||||
            build-base \
 | 
			
		||||
            meson \
 | 
			
		||||
            pkgconf \
 | 
			
		||||
            linux-pam \
 | 
			
		||||
            linux-pam-dev \
 | 
			
		||||
            libcap \
 | 
			
		||||
            libcap-dev
 | 
			
		||||
      - uses: actions/checkout@v2
 | 
			
		||||
      - run: meson setup builddir/
 | 
			
		||||
      - run: meson compile -C builddir
 | 
			
		||||
      - run: meson test --verbose -C builddir
 | 
			
		||||
							
								
								
									
										24
									
								
								.github/workflows/ci-ubuntu.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								.github/workflows/ci-ubuntu.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,24 +0,0 @@
 | 
			
		||||
name: ci_ubuntu
 | 
			
		||||
 | 
			
		||||
on: [push, pull_request]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
 | 
			
		||||
  ubuntu:
 | 
			
		||||
    name: Ubuntu
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    strategy:
 | 
			
		||||
      fail-fast: false
 | 
			
		||||
      matrix:
 | 
			
		||||
        compiler:
 | 
			
		||||
          - gcc
 | 
			
		||||
          - clang
 | 
			
		||||
    env:
 | 
			
		||||
      CC: ${{ matrix.compiler }}
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@v2
 | 
			
		||||
    - run: sudo apt-get update -q
 | 
			
		||||
    - run: sudo apt-get install -q -y build-essential libpam-dev meson libcap-dev ${CC}
 | 
			
		||||
    - run: meson setup builddir/
 | 
			
		||||
    - run: ninja -C builddir
 | 
			
		||||
    - run: ninja test --verbose -C builddir
 | 
			
		||||
							
								
								
									
										25
									
								
								.github/workflows/coverity.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										25
									
								
								.github/workflows/coverity.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,25 +0,0 @@
 | 
			
		||||
# GitHub actions workflow.
 | 
			
		||||
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
 | 
			
		||||
 | 
			
		||||
# https://scan.coverity.com/projects/openrc-openrc
 | 
			
		||||
name: Coverity Scan
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  coverity:
 | 
			
		||||
    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 libcap-dev
 | 
			
		||||
    - run: meson setup builddir/
 | 
			
		||||
      env:
 | 
			
		||||
        CC: gcc
 | 
			
		||||
    - uses: vapier/coverity-scan-action@v1
 | 
			
		||||
      with:
 | 
			
		||||
        command: ninja -C builddir
 | 
			
		||||
        email: ${{ secrets.COVERITY_SCAN_EMAIL }}
 | 
			
		||||
        token: ${{ secrets.COVERITY_SCAN_TOKEN }}
 | 
			
		||||
							
								
								
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -9,4 +9,8 @@ core
 | 
			
		||||
.gdb_history
 | 
			
		||||
.gdbinit
 | 
			
		||||
 | 
			
		||||
build
 | 
			
		||||
.depend
 | 
			
		||||
*.a
 | 
			
		||||
*.o
 | 
			
		||||
*.So
 | 
			
		||||
lib*.so
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								AUTHORS
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								AUTHORS
									
									
									
									
									
								
							@@ -43,7 +43,6 @@ Ian Stakenvicius <axs@gentoo.org>
 | 
			
		||||
Jakob Drexel <jake42@rommel.stw.uni-erlangen.de>
 | 
			
		||||
James Le Cuirot <chewi@aura-online.co.uk>
 | 
			
		||||
Jan Psota <jasiu@belsznica.pl>
 | 
			
		||||
Jason A. Donenfeld <Jason@zx2c4.com>
 | 
			
		||||
Jason Zaman <jason@perfinion.com>
 | 
			
		||||
Joe Harvell <jharvell@dogpad.net>
 | 
			
		||||
Joe M <joe9mail@gmail.com>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										644
									
								
								ChangeLog
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										644
									
								
								ChangeLog
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,644 @@
 | 
			
		||||
commit 291cddb72b1e00c0708e2b4c2278f9fbd0db007e
 | 
			
		||||
Author: Matt Whitlock <gentoo@mattwhitlock.name>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    supervise-daemon: implement SSD_IONICELEVEL
 | 
			
		||||
    
 | 
			
		||||
    supervise-daemon was apparently overlooked when support for the
 | 
			
		||||
    SSD_IONICELEVEL environment variable was added. This commit brings
 | 
			
		||||
    supervise-daemon up to parity with start-stop-daemon with respect to
 | 
			
		||||
    this environment variable.
 | 
			
		||||
 | 
			
		||||
commit 002e25a74ac8eff31f9aa804fbda77b97f2ef944
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update ChangeLog
 | 
			
		||||
 | 
			
		||||
commit 2ac620cf53fbbd201927055b771d59f16086ddc4
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update travis ci irc notifications
 | 
			
		||||
    
 | 
			
		||||
    - move to libera network
 | 
			
		||||
    - always notify on successful build
 | 
			
		||||
 | 
			
		||||
commit e9fb5f81cc862001bcc10a4ce0f18a7cd6cd6df3
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    man/supervise-daemon.8: document --pidfile option
 | 
			
		||||
 | 
			
		||||
commit 67dfdec43ffe9160f4d63394c6334fc10c6992c8
 | 
			
		||||
Author: Sven Wegener <sven.wegener@stealer.net>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    on_ac_power: support multiple power_supply devices in sysfs
 | 
			
		||||
    
 | 
			
		||||
    Newer devices have multiple power_supply devices in sysfs:
 | 
			
		||||
    
 | 
			
		||||
    $ grep ^ /sys/class/power_supply/*/type
 | 
			
		||||
    /sys/class/power_supply/AC/type:Mains
 | 
			
		||||
    /sys/class/power_supply/BAT0/type:Battery
 | 
			
		||||
    /sys/class/power_supply/ucsi-source-psy-USBC000:001/type:USB
 | 
			
		||||
    /sys/class/power_supply/ucsi-source-psy-USBC000:002/type:USB
 | 
			
		||||
    
 | 
			
		||||
    There are two "USB" Type-C ports than can supply power and both are
 | 
			
		||||
    aggregated into the "Mains" power supply by the firmware. The "Battery"
 | 
			
		||||
    also counts as a power supply, but is missing the online attribute.
 | 
			
		||||
    
 | 
			
		||||
    The -f check with a wildcard pattern results in an error, when multiple
 | 
			
		||||
    devices are present:
 | 
			
		||||
    
 | 
			
		||||
    /lib/rc/bin/on_ac_power: line 21: [: too many arguments
 | 
			
		||||
    
 | 
			
		||||
    When the power_supply class is registered, check for a "Mains" device.
 | 
			
		||||
    
 | 
			
		||||
    Fixes #427.
 | 
			
		||||
 | 
			
		||||
commit fa88750060effe4a23a14d7e70517e475fd11b39
 | 
			
		||||
Author: Alex Xu <351006+Hello71@users.noreply.github.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    conf.d/hostname: clarify hostname variable usage
 | 
			
		||||
    
 | 
			
		||||
    https://gitlab.alpinelinux.org/alpine/aports/-/issues/9744
 | 
			
		||||
    
 | 
			
		||||
    This fixes #433.
 | 
			
		||||
 | 
			
		||||
commit 223550f6765a89254f978c2007612e5be7d308a6
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    Revert "openrc-init: ignore an empty string in argv[1]"
 | 
			
		||||
    
 | 
			
		||||
    This reverts commit 7a1532382284d9d3d0f1e31d89ff1ca0d3199cb5.
 | 
			
		||||
        This check is no longer needed since rc_runlevel_exists() is fixed.
 | 
			
		||||
    
 | 
			
		||||
            X-Gentoo-Bug: 803536
 | 
			
		||||
            X-Gentoo-Bug-URL: https://bugs.gentoo.org/803536
 | 
			
		||||
            Closes: https://github.com/OpenRC/openrc/pull/431
 | 
			
		||||
 | 
			
		||||
commit d6295768eaa886d7cf296e5d7f94711ec1f08038
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    librc: fix rc_runlevel_exists return for empty string
 | 
			
		||||
    
 | 
			
		||||
    This function should return false if the runlevel is an empty string.
 | 
			
		||||
    
 | 
			
		||||
        X-Gentoo-Bug: 803536
 | 
			
		||||
        X-Gentoo-Bug-URL: https://bugs.gentoo.org/803536
 | 
			
		||||
        Closes: https://github.com/OpenRC/openrc/pull/431
 | 
			
		||||
 | 
			
		||||
commit 7a1532382284d9d3d0f1e31d89ff1ca0d3199cb5
 | 
			
		||||
Author: Mike Gilbert <floppym@gentoo.org>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    openrc-init: ignore an empty string in argv[1]
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 803536
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/803536
 | 
			
		||||
    Closes: https://github.com/OpenRC/openrc/pull/431
 | 
			
		||||
 | 
			
		||||
commit edb07278af2f5e05873da99d4a80bfbb6f08812b
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    sh/rc-cgroup.sh: fix case in starting message
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 804193
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=804193
 | 
			
		||||
 | 
			
		||||
commit d07d896aa82a789c558876ee3257b785df1e7946
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    sh/rc-cgroup.sh: fix cgroup_cleanup
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 804193
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=804193
 | 
			
		||||
 | 
			
		||||
commit 80955a691bfb151b92d04c12b5d138bafdedf532
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    version 0.43.4
 | 
			
		||||
 | 
			
		||||
commit 2413f487e2d556a657bca8c873828873c650f995
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update ChangeLog
 | 
			
		||||
 | 
			
		||||
commit 32a8a202d0728e3e550050069da3e27de2d98d7f
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    move the irc channel to the libera network
 | 
			
		||||
 | 
			
		||||
commit 803ed1badddb3edfc78f4346d8d059253a334cd9
 | 
			
		||||
Author: Lars Wendler <polynomial-c@gentoo.org>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    init.d/modules.in: Avoid loading modules twice in Linux with dash shell
 | 
			
		||||
    
 | 
			
		||||
    Since commit 6b475ab26992f1dd8815700828df46abc4b71d27, openrc tries to load
 | 
			
		||||
    modules twice which have been defined in /etc/conf.d/modules via modules=
 | 
			
		||||
    variable when /bin/sh points to dash shell.
 | 
			
		||||
    The reason is that when the "modules-load" service was merged into "modules"
 | 
			
		||||
    service, the "modules" variable name got used in both, load_modules()
 | 
			
		||||
    function and in Linux_modules() function which both get called when modules
 | 
			
		||||
    service is started. Although "modules" variable is marked as local in
 | 
			
		||||
    load_modules(), dash simply ignores this.
 | 
			
		||||
    
 | 
			
		||||
    Avoid the issue by renaming "modules" variable to "_modules" in
 | 
			
		||||
    load_modules() function.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #419.
 | 
			
		||||
 | 
			
		||||
commit 8a6f9d943bf7256630a37ea9e3a8421e079f05b9
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    README: convert references to markdown links
 | 
			
		||||
 | 
			
		||||
commit ee8c0c1cc1edb4959845e5bc487ce6e83ad9f2b3
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    version 0.43.3
 | 
			
		||||
 | 
			
		||||
commit f61e44d110d3ceb96c06bf7dbdd07b8ab85166e3
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update ChangeLog
 | 
			
		||||
 | 
			
		||||
commit 55ceac775c388191090fe37aef489d721ee9299d
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    checkpath: fix code to walk the directory path
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 782808
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/782808
 | 
			
		||||
 | 
			
		||||
commit 7b07c55c86cf356a832fe2975c9f8e164bcb2b7b
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    version 0.43.2
 | 
			
		||||
 | 
			
		||||
commit 793673df3ca3ad8692e135bd5c77b21bae3ebbe2
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update ChangeLog
 | 
			
		||||
 | 
			
		||||
commit 6219d87071d07acf4d6b3e99ec58134acf129d8e
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    checkpath: remove extra slashes from paths
 | 
			
		||||
    
 | 
			
		||||
    This fixes #418.
 | 
			
		||||
 | 
			
		||||
commit 72b5c7429011e0d20c450fe06dc4b645e36eecb0
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    version 0.43.1
 | 
			
		||||
 | 
			
		||||
commit aad77d0267426edef6a568e26c9bae11c2367db4
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update ChangeLog
 | 
			
		||||
 | 
			
		||||
commit 99565e359f3081e053573d10756e1a756c56342b
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    cgroup2_set_limits: fix harmless error message
 | 
			
		||||
    
 | 
			
		||||
    In legacy cgroups mode, we were running `mountinfo -q ""` which was
 | 
			
		||||
    generating an error message. If we return immediately when
 | 
			
		||||
    cgroup2_find_path returns an empty value, we avoid this message.
 | 
			
		||||
 | 
			
		||||
commit ee05403c501b5f0c0a955b1f8d67b2d88f0ede7a
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    version 0.43
 | 
			
		||||
 | 
			
		||||
commit c1558abb0f1e0fe2d1a2c42a536de335a1cd8de9
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update ChangeLog
 | 
			
		||||
 | 
			
		||||
commit 901b752463eb37784fcebe5a3b5648b4bfbd9371
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    README: force references to be on separate lines for github
 | 
			
		||||
 | 
			
		||||
commit c88368b7925e343e293a493da671edaa4ccebc0d
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update news
 | 
			
		||||
    
 | 
			
		||||
    This adds a note about SHLIBDIR being dropped from the makefiles.
 | 
			
		||||
 | 
			
		||||
commit bfffe2c585dd6a23a7d3c99d16d414abcb321105
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    drop reference to gentoo bugzilla
 | 
			
		||||
    
 | 
			
		||||
    OpenRC has a bug tracker on github, so ask people to file issues there.
 | 
			
		||||
 | 
			
		||||
commit 5f890ee8ab94f8760f4840d280feb7eced999068
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    init.sh: rework the /run setup for linux xystems
 | 
			
		||||
    
 | 
			
		||||
    - fix mount options for /run.
 | 
			
		||||
    - run restorecon after everything is set up.
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 740576
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/740576
 | 
			
		||||
 | 
			
		||||
commit ef76a663bcc03d4cc9dd1ef05c800f208e26d0ed
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    stop namespaced services with specified pids
 | 
			
		||||
    
 | 
			
		||||
    The previous fix excludes PIDs of processes running in a different namespace
 | 
			
		||||
    regardless of whether the PID has been explicitly stored in a PID file mentioned
 | 
			
		||||
    in the --pidfile parameter.  The correct behavior is to only exclude the pid if
 | 
			
		||||
    it is not stored in a pidfile.
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 776010
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/776010
 | 
			
		||||
 | 
			
		||||
commit fccd37c34cbabe77d701316491b899a0eb529114
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    add PKGCONFIGDIR to the makefiles
 | 
			
		||||
    
 | 
			
		||||
    This allows pkgconfig files to be stored in /usr even if PREFIX is /.
 | 
			
		||||
 | 
			
		||||
commit 5058b6668caaa1ac019d6da299528ad0c75379c2
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    drop shlibdir
 | 
			
		||||
    
 | 
			
		||||
    I know of no other build systems that have separate paths for static vs
 | 
			
		||||
    shared libraries, so this changes ours to use libdir for all libraries.
 | 
			
		||||
 | 
			
		||||
commit 1878a74a124e12fbdc3fe3286d81045b9198d424
 | 
			
		||||
Author: Thomas Deutschmann <whissi@whissi.de>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    numlock: Don't disable numlock on shutdown
 | 
			
		||||
    
 | 
			
		||||
    When dealing with remote consoles, a shutdown could disable
 | 
			
		||||
    host's numlock which is not desired.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #413.
 | 
			
		||||
 | 
			
		||||
commit 897c2c00eff0dd73717b0903548912063cfd9f01
 | 
			
		||||
Author: btdmaster <59375667+btdmaster@users.noreply.github.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    README: Wrap 'make install' in backticks
 | 
			
		||||
    
 | 
			
		||||
    This fixes #412
 | 
			
		||||
 | 
			
		||||
commit 08d518b7fe8f4eade97a50d41859da841a04658a
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    rc_cgroup.sh: do not add newline when writing group2 values
 | 
			
		||||
    
 | 
			
		||||
    Fixes: #407
 | 
			
		||||
 | 
			
		||||
commit de776746634cde398bf2a171bfcb43ecc7069e33
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    rc-cgroup.sh: avoid process substitution for cgroup_get_pids
 | 
			
		||||
    
 | 
			
		||||
    This should make cgroup_cleanup work successfully since cgroup_get_pids
 | 
			
		||||
    no longer uses a subshell.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #396.
 | 
			
		||||
    This fixes #397.
 | 
			
		||||
 | 
			
		||||
commit 4fb4674374931be2fa279692800185078f350d9f
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    fix unified cgroups v2 setup
 | 
			
		||||
    
 | 
			
		||||
    The cgroups v2 setup required the rc_cgroups_controllers variable
 | 
			
		||||
    to be set to the list of controllers to enable regardless of whether the
 | 
			
		||||
    mode was hybrid or unified.
 | 
			
		||||
    
 | 
			
		||||
    This makes sense for hybrid mode since the controllers can't be in both
 | 
			
		||||
    the cgroups v1 and v2 hierarchies, but for unified mode we should enable
 | 
			
		||||
    all controllers that are configured in the kernel.
 | 
			
		||||
 | 
			
		||||
commit 0ddab761be249f54388c12f6cc8197dd01a63673
 | 
			
		||||
Author: Disconnect3d <dominik.b.czarnota@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    start-stop-daemon: Fix off by ones when checking for RC_* envvars
 | 
			
		||||
    
 | 
			
		||||
    The same as https://github.com/OpenRC/openrc/pull/361
 | 
			
		||||
    
 | 
			
		||||
    This fixes #362.
 | 
			
		||||
 | 
			
		||||
commit f5dd2f5baf1a33173c8ac47495e53d32aee834f5
 | 
			
		||||
Author: Disconnect3d <dominik.b.czarnota@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    supervise-daemon: Fix off by ones when checking for RC_* envvars
 | 
			
		||||
    
 | 
			
		||||
    Fixes strncmp size argument off by one as the current implementation didn't
 | 
			
		||||
    match the `=` character.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #361.
 | 
			
		||||
 | 
			
		||||
commit b12c52d40f2221e6e2b3ae0296d45c607845ea2a
 | 
			
		||||
Author: Rin Cat <me@rin.cat>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    Support docker and lxc stop
 | 
			
		||||
    
 | 
			
		||||
    This fixes #398.
 | 
			
		||||
 | 
			
		||||
commit bac71fce5bc9cb7ba02338c6c4cfc949badd218b
 | 
			
		||||
Author: sqozz <sqozz@geekify.de>
 | 
			
		||||
Commit: Mike Frysinger <vapier@gmail.com>
 | 
			
		||||
 | 
			
		||||
    start-stop-daemon: fix typo in manpage
 | 
			
		||||
 | 
			
		||||
commit 12ee72a9b34ef33411cf1bfd5ea059676ee6e482
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    allow devfs to run on lxc
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: 761918
 | 
			
		||||
    X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=761918
 | 
			
		||||
    Closes #272.
 | 
			
		||||
 | 
			
		||||
commit 170ce2624a98952e6eb871cd9915c7c1b76ab887
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    typo fix
 | 
			
		||||
 | 
			
		||||
commit 9a6698876af1c7563ae7a3237111fc43cf4f5bda
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    improve the diagnostic when the ulimit builtin fails
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug:739274
 | 
			
		||||
    X-Gentoo-Bug-URL:https://bugs.gentoo.org/739274
 | 
			
		||||
 | 
			
		||||
commit bf9af1fb23b57af38880d824e7bba37a648f12fb
 | 
			
		||||
Author: Gaël PORTAY <gael.portay@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    net-online: fix process of symlinks in sysfs
 | 
			
		||||
    
 | 
			
		||||
    The test `[ -h "${ifname}" ] && continue` skips the symlinks while it is
 | 
			
		||||
    the opposite that is the expected: ignoring files that are not symlinks.
 | 
			
		||||
    
 | 
			
		||||
    Fixes commit f42ec82f21f3760b829507344ad0ae761e1d59aa.
 | 
			
		||||
    This fixes #391.
 | 
			
		||||
 | 
			
		||||
commit 5c9c2a19397eb7bcc0bd1c7091229bbf9ef883b5
 | 
			
		||||
Author: Patrick Noll <8444617+pnoll1@users.noreply.github.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    remove statement about not providing an init
 | 
			
		||||
    
 | 
			
		||||
    This fixes #359.
 | 
			
		||||
 | 
			
		||||
commit 4b2a61f1b8b786600e39ba1a223ff8d9b389b275
 | 
			
		||||
Author: Manuel Rüger <manuel@rueg.eu>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    rc-status: Remove noise from ini-formatted output
 | 
			
		||||
    
 | 
			
		||||
    Otherwise this would create the following output:
 | 
			
		||||
    
 | 
			
		||||
    rc-status -f ini
 | 
			
		||||
     * Caching service dependencies ...        [ ok ]
 | 
			
		||||
    [default]
 | 
			
		||||
    dbus =  started
 | 
			
		||||
    NetworkManager =  started
 | 
			
		||||
    syslog-ng =  started
 | 
			
		||||
    ...
 | 
			
		||||
    
 | 
			
		||||
    This fixes #364.
 | 
			
		||||
 | 
			
		||||
commit 62bc463c63a3beeeead0b6fb164f7c7e9b917849
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update freebsd 11.x image on cirrus ci
 | 
			
		||||
 | 
			
		||||
commit 7019bfad3b4cf6eff31d967f6f4e0960f67858fb
 | 
			
		||||
Author: Clayton Craft <clayton@craftyguy.net>
 | 
			
		||||
Commit: Luca Barbato <luca.barbato@gmail.com>
 | 
			
		||||
 | 
			
		||||
    user-guide: clarify note for Runlevels/rc-update usage
 | 
			
		||||
    
 | 
			
		||||
    I found the original note a little confusing, since using rc-update will
 | 
			
		||||
    add it to a runlevel so it *is* auto-started when the system reaches
 | 
			
		||||
    that runlevel again, but I don't think that was the intended meaning of
 | 
			
		||||
    'auto-start', so hopefully this makes it a little more clear.
 | 
			
		||||
 | 
			
		||||
commit 8346c985d598385e760375a8adf69c986bb4a350
 | 
			
		||||
Author: lishuxiang <GoldenMean58@outlook.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    Update user-guide.md
 | 
			
		||||
    
 | 
			
		||||
    fix a typo
 | 
			
		||||
    
 | 
			
		||||
    This fixes #389.
 | 
			
		||||
 | 
			
		||||
commit da30767353eb1cc13826176bf19308a05c7bade4
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    supervise-daemon: do not spawn a process if we are exiting
 | 
			
		||||
    
 | 
			
		||||
    This fixes #375 and allows us to not add another level of indentation in
 | 
			
		||||
    the supervisor loop.
 | 
			
		||||
 | 
			
		||||
commit 57d9528a0bc64366ea3e0fbbb21b1282ce5c1212
 | 
			
		||||
Author: Dermot Bradley <dermot_bradley@yahoo.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    Remove warning when osclock init.d script runs
 | 
			
		||||
    
 | 
			
		||||
    Currently when osclock is enabled as a init.d service the following
 | 
			
		||||
    messages appear during boot when osclock starts:
 | 
			
		||||
    
 | 
			
		||||
      * The command variable is undefined.
 | 
			
		||||
      * There is nothing for osclock to start.
 | 
			
		||||
      * If this is what you intend, please write a start function.
 | 
			
		||||
      * This will become a failure in a future release.
 | 
			
		||||
    
 | 
			
		||||
    osclock is activated whenever a machine's system clock is automatically
 | 
			
		||||
    configured from a RTC by the kernel and the osclock's only purpose is to
 | 
			
		||||
    satisfy the "clock" dependency defined by other init.d services.
 | 
			
		||||
    
 | 
			
		||||
    Adding a stub start() function prevents OpenRC from showing warnings but
 | 
			
		||||
    continues to ensure that the osclock service still does not actually do
 | 
			
		||||
    anything.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #377.
 | 
			
		||||
 | 
			
		||||
commit 6ce48f124aea593b77163d6f198d18bbe9093068
 | 
			
		||||
Author: Calvin Montgomery <calzoneman@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    man/openrc.8: populate OPTIONS from --help output
 | 
			
		||||
    
 | 
			
		||||
    This fixes #378.
 | 
			
		||||
 | 
			
		||||
commit 00ea2166081856774f24f7243126f701c7fe6db9
 | 
			
		||||
Author: Michael Orlitzky <michael@orlitzky.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    src/rc/checkpath.c: replace mkdir() with mkdirat().
 | 
			
		||||
    
 | 
			
		||||
    The do_check() function recently gained some defenses against symlink
 | 
			
		||||
    replacement attacks that involve the use of *at functions in place of
 | 
			
		||||
    their vanilla counterparts; openat() instead of open(), for example.
 | 
			
		||||
    One opportunity to replace mkdir() with mkdirat() was missed, however,
 | 
			
		||||
    and this commit replaces it.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #386.
 | 
			
		||||
 | 
			
		||||
commit ac7ca6d901d72b1bc4ed13be5438e825c07fc0da
 | 
			
		||||
Author: Michael Orlitzky <michael@orlitzky.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    src/rc/checkpath.c: fix typo "synbolic" -> "symbolic".
 | 
			
		||||
 | 
			
		||||
commit 47819f004cec3cc3e911ba69003b8b52bacbebef
 | 
			
		||||
Author: Johannes Heimansberg <git@jhe.dedyn.io>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    start-stop-daemon, supervise-daemon: fix parsing of usernames passed via --user that start with a number
 | 
			
		||||
    
 | 
			
		||||
    start-stop-daemon and supervise-daemon parse usernames and group names
 | 
			
		||||
    passed via the --user argument as numeric UID/GID if they start with a
 | 
			
		||||
    number (e.g. user "4foo" will be treated as UID 4). This results in the
 | 
			
		||||
    process that is being started to run under a totally unexpected user if
 | 
			
		||||
    that UID exists.
 | 
			
		||||
    
 | 
			
		||||
    Even though the result of the sscanf calls are tested for a result of
 | 
			
		||||
    exactly 1, which means exactly one value was extracted, because sscanf's
 | 
			
		||||
    format string only contains only one placeholder, it will never return
 | 
			
		||||
    a value greater than 1, even if there are still characters left to be
 | 
			
		||||
    parsed. This causes start-stop-daemon and supervise-daemon to assume
 | 
			
		||||
    that usernames starting with a number are just that number. Adding a
 | 
			
		||||
    second placeholder "%1s" to the format string, which matches a string of
 | 
			
		||||
    length 1, makes sure that sscanf can distinguish between pure numbers
 | 
			
		||||
    (in which case it will return 1) and strings either starting with a
 | 
			
		||||
    number (in which case it will return 2) and any other string (in which
 | 
			
		||||
    case it will return 0).
 | 
			
		||||
    
 | 
			
		||||
    This fixes #379.
 | 
			
		||||
    This fixes #380.
 | 
			
		||||
 | 
			
		||||
commit 0fab3e837b45021fdcc02a71873c3c245ce96080
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    bootmisc: allow sysvinit compatibility  during shutdown
 | 
			
		||||
    
 | 
			
		||||
    Use "halt -w" to write the halt record if it exists.
 | 
			
		||||
    Otherwise use openrc-shutdown.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #336.
 | 
			
		||||
 | 
			
		||||
commit 38aaba28ee86602e29d8a31f155dfa72f5481e68
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    scripts/shutdown.in: fix sysvinit compatible shutdown
 | 
			
		||||
    
 | 
			
		||||
    X-Gentoo-Bug: https://bugs.gentoo.org/755422
 | 
			
		||||
 | 
			
		||||
commit 3ed4126a31406124ae8042fc3d4c0bf963d6961e
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    update news for 0.43 with info on checkpath fix
 | 
			
		||||
 | 
			
		||||
commit aa0fdf6d08b987dfcabebf5b8d05beff015ad8f4
 | 
			
		||||
Author: Lars Wendler <polynomial-c@gentoo.org>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    start-stop-daemon: Don't segfault if --exec was given a non-existing file name
 | 
			
		||||
    
 | 
			
		||||
      Starting program: /sbin/start-stop-daemon --start --exec i-dont-exist
 | 
			
		||||
    
 | 
			
		||||
      Program received signal SIGSEGV, Segmentation fault.
 | 
			
		||||
      0x0000555555559053 in main (argc=1, argv=0x7fffffffdc20)
 | 
			
		||||
          at start-stop-daemon.c:631
 | 
			
		||||
      631                         *exec_file ? exec_file : exec);
 | 
			
		||||
    
 | 
			
		||||
    This fixes #385.
 | 
			
		||||
 | 
			
		||||
commit b6fef599bf8493480664b766040fa9b0d4b1e335
 | 
			
		||||
Author: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
 | 
			
		||||
 | 
			
		||||
    checkpath: fix CVE-2018-21269
 | 
			
		||||
    
 | 
			
		||||
    This walks the directory path to the file we are going to manipulate to make
 | 
			
		||||
    sure that when we create the file and change the ownership and permissions
 | 
			
		||||
    we are working on the same file.
 | 
			
		||||
    Also, all non-terminal symbolic links must be owned by root. This will
 | 
			
		||||
    keep a non-root user from making a symbolic link as described in the
 | 
			
		||||
    bug. If root creates the symbolic link, it is assumed to be trusted.
 | 
			
		||||
    
 | 
			
		||||
    On non-linux platforms, we no longer follow non-terminal symbolic links
 | 
			
		||||
    by default. If you need to do that, add the -s option on the checkpath
 | 
			
		||||
    command line, but keep in mind that this is not secure.
 | 
			
		||||
    
 | 
			
		||||
    This fixes #201.
 | 
			
		||||
 | 
			
		||||
commit aac1734a70b60da97d4d24930f1902ca46894b44
 | 
			
		||||
Author: Julien Surloppe <julien@surloppe.fr>
 | 
			
		||||
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
 | 
			
		||||
							
								
								
									
										55
									
								
								Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								Makefile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,55 @@
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
TOP:=		${dir ${realpath ${firstword ${MAKEFILE_LIST}}}}
 | 
			
		||||
MK=			${TOP}/mk
 | 
			
		||||
 | 
			
		||||
include ${TOP}/Makefile.inc
 | 
			
		||||
 | 
			
		||||
SUBDIR=		conf.d etc init.d local.d man scripts sh src support sysctl.d
 | 
			
		||||
 | 
			
		||||
# Build bash completion or not
 | 
			
		||||
MKBASHCOMP?=	no
 | 
			
		||||
ifeq (${MKBASHCOMP},yes)
 | 
			
		||||
SUBDIR+=	bash-completion
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
# Build pkgconfig or not
 | 
			
		||||
MKPKGCONFIG?=	yes
 | 
			
		||||
ifeq (${MKPKGCONFIG},yes)
 | 
			
		||||
SUBDIR+=	pkgconfig
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
# Build zsh completion or not
 | 
			
		||||
MKZSHCOMP?=	no
 | 
			
		||||
ifeq (${MKZSHCOMP},yes)
 | 
			
		||||
SUBDIR+=	zsh-completion
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
# We need to ensure that runlevels is done last other than test
 | 
			
		||||
SUBDIR+=	runlevels
 | 
			
		||||
SUBDIR+=	test
 | 
			
		||||
 | 
			
		||||
INSTALLAFTER=	_installafter
 | 
			
		||||
 | 
			
		||||
include ${MK}/sys.mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
include ${MK}/subdir.mk
 | 
			
		||||
include ${MK}/dist.mk
 | 
			
		||||
include ${MK}/gitver.mk
 | 
			
		||||
 | 
			
		||||
_installafter:
 | 
			
		||||
ifeq (${MKPREFIX},yes)
 | 
			
		||||
	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
 | 
			
		||||
else ifneq (${OS},Linux)
 | 
			
		||||
	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/init.d
 | 
			
		||||
endif
 | 
			
		||||
	${INSTALL} -d ${DESTDIR}/${LIBEXECDIR}/tmp
 | 
			
		||||
	${ECHO} "${VERSION}${GITVER}" > ${DESTDIR}/${LIBEXECDIR}/version
 | 
			
		||||
							
								
								
									
										3
									
								
								Makefile.inc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								Makefile.inc
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
NAME=		openrc
 | 
			
		||||
VERSION=	0.43.5
 | 
			
		||||
PKG=		${NAME}-${VERSION}
 | 
			
		||||
							
								
								
									
										50
									
								
								NEWS.md
									
									
									
									
									
								
							
							
						
						
									
										50
									
								
								NEWS.md
									
									
									
									
									
								
							@@ -4,57 +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.45
 | 
			
		||||
 | 
			
		||||
The old make-based build system is removed in this release.
 | 
			
		||||
 | 
			
		||||
The killprocs service now has a KILL_DELAY setting to allow OpenRC based
 | 
			
		||||
containers to close all TCP/IP connections before they are shut down.
 | 
			
		||||
 | 
			
		||||
The --oom-score-adj option has been added to start-stop-daemon and
 | 
			
		||||
supervise-daemon. This sets the appropriate setting for the Linux
 | 
			
		||||
kernel. for more info, see the man pages.
 | 
			
		||||
 | 
			
		||||
Support for Linux capabilities has been added to both supervise-daemon
 | 
			
		||||
and start-stop-daemon using the --capabilities option.
 | 
			
		||||
As a result, the user can specify the inheritable, ambient and bounding set
 | 
			
		||||
by defining capabilities in the service script.
 | 
			
		||||
 | 
			
		||||
noexec has been added to the default mount options for /dev. If you need
 | 
			
		||||
to remove this option, add an entry to fstab.
 | 
			
		||||
 | 
			
		||||
A --secbits option has been added to start-stop-daemon and
 | 
			
		||||
supervise-daemon. This sets the security bits option which should be
 | 
			
		||||
applied to the daemon.
 | 
			
		||||
 | 
			
		||||
A no-new-privs option has been added to start-stop-daemon and
 | 
			
		||||
supervise-daemon. This sets the NO_NEW_PRIVS flag to apply to the
 | 
			
		||||
daemon.
 | 
			
		||||
 | 
			
		||||
On Linux, the service that seeds the random number generator has been
 | 
			
		||||
renamed from urandom to seedrng. This means that when  you upgrade to
 | 
			
		||||
this version, if urandom is in your boot runlevel, you must add seedrng.
 | 
			
		||||
This can be done by issuing the following commands:
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
# rc-update add seedrng boot
 | 
			
		||||
# rc-update del urandom boot
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## 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.
 | 
			
		||||
@@ -143,7 +97,7 @@ using modules-load in  your dependencies.
 | 
			
		||||
 | 
			
		||||
The consolefont, keymaps, numlock and procfs service scripts no longer
 | 
			
		||||
have a dependency on localmount.
 | 
			
		||||
If you are a linux user and are still separating / from /usr,
 | 
			
		||||
If you are a linux user and are still separaating / from /usr,
 | 
			
		||||
you will need to add the following line to the appropriate conf.d files:
 | 
			
		||||
 | 
			
		||||
rc_need="localmount"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										57
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										57
									
								
								README.md
									
									
									
									
									
								
							@@ -4,21 +4,65 @@ OpenRC README
 | 
			
		||||
OpenRC is a dependency-based init system that works with the
 | 
			
		||||
system-provided init program, normally `/sbin/init`.
 | 
			
		||||
 | 
			
		||||
## building and installing
 | 
			
		||||
## Installation
 | 
			
		||||
 | 
			
		||||
OpenRC uses the  [meson](http://mesonbuild.com) build system, so use the
 | 
			
		||||
usual methods for this build system to build and install.
 | 
			
		||||
OpenRC requires GNU make.
 | 
			
		||||
 | 
			
		||||
Once you have GNU Make installed, the default OpenRC installation can be
 | 
			
		||||
executed using this command:
 | 
			
		||||
 | 
			
		||||
`make install`
 | 
			
		||||
 | 
			
		||||
## Configuration
 | 
			
		||||
 | 
			
		||||
You may wish to configure the installation by passing one or more of the
 | 
			
		||||
below arguments to the make command
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
PROGLDFLAGS=-static
 | 
			
		||||
LIBNAME=lib64
 | 
			
		||||
DESTDIR=/tmp/openrc-image
 | 
			
		||||
MKBASHCOMP=no
 | 
			
		||||
MKNET=no
 | 
			
		||||
MKPAM=pam
 | 
			
		||||
MKPREFIX=yes
 | 
			
		||||
MKPKGCONFIG=no
 | 
			
		||||
MKSELINUX=yes
 | 
			
		||||
MKSTATICLIBS=no
 | 
			
		||||
MKSYSVINIT=yes
 | 
			
		||||
MKTERMCAP=ncurses
 | 
			
		||||
MKTERMCAP=termcap
 | 
			
		||||
MKZSHCOMP=no
 | 
			
		||||
PKG_PREFIX=/usr/pkg
 | 
			
		||||
LOCAL_PREFIX=/usr/local
 | 
			
		||||
PREFIX=/usr/local
 | 
			
		||||
BRANDING=\"Gentoo/$(uname -s)\"
 | 
			
		||||
SH=/bin/sh
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## Notes
 | 
			
		||||
 | 
			
		||||
We don't support building a static OpenRC with PAM.
 | 
			
		||||
 | 
			
		||||
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`.
 | 
			
		||||
 | 
			
		||||
`PKG_PREFIX` should be set to where packages install to by default.
 | 
			
		||||
 | 
			
		||||
`LOCAL_PREFIX` should be set to where user maintained packages are.
 | 
			
		||||
Only set `LOCAL_PREFIX` if different from `PKG_PREFIX`.
 | 
			
		||||
 | 
			
		||||
`ROOTPREFIX` should be set when the root path is different from '/'.
 | 
			
		||||
`PREFIX` should be set when OpenRC is not installed to /.
 | 
			
		||||
 | 
			
		||||
If any of the following files exist then we do not overwrite them
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
/etc/devd.conf
 | 
			
		||||
/etc/rc
 | 
			
		||||
/etc/rc.shutdown
 | 
			
		||||
/etc/conf.d/*
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
`rc` and `rc.shutdown` are the hooks from the BSD init into OpenRC.
 | 
			
		||||
 | 
			
		||||
@@ -32,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
 | 
			
		||||
							
								
								
									
										11
									
								
								bash-completion/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								bash-completion/Makefile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
DIR=	${BASHCOMPDIR}
 | 
			
		||||
CONF=	openrc \
 | 
			
		||||
		openrc-service-script \
 | 
			
		||||
		rc-service \
 | 
			
		||||
		rc-status \
 | 
			
		||||
		rc-update \
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
@@ -1,12 +0,0 @@
 | 
			
		||||
if get_option('bash-completions')
 | 
			
		||||
bash_completions = [
 | 
			
		||||
  'openrc',
 | 
			
		||||
  'openrc-service-script',
 | 
			
		||||
  'rc-service',
 | 
			
		||||
  'rc-status',
 | 
			
		||||
  'rc-update',
 | 
			
		||||
  ]
 | 
			
		||||
 | 
			
		||||
install_data(bash_completions,
 | 
			
		||||
  install_dir : get_option('datadir') / 'bash-completion/completions')
 | 
			
		||||
endif
 | 
			
		||||
@@ -1,10 +1,10 @@
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,10 @@
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,10 @@
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,10 @@
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,10 @@
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										10
									
								
								ci/cirrus.sh
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								ci/cirrus.sh
									
									
									
									
									
								
							@@ -1,11 +1,11 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
# Copyright (c) 2007-2018 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -16,6 +16,6 @@ set -x
 | 
			
		||||
# These are steps to run on Cirrus CI under a jailed FreeBSD system.
 | 
			
		||||
# See $TOP/.cirrus.yml for more info about the Cirrus CI setup.
 | 
			
		||||
 | 
			
		||||
meson build
 | 
			
		||||
meson compile -C build
 | 
			
		||||
meson test --verbose -C build
 | 
			
		||||
cpus=$(getconf NPROCESSORS_CONF || echo 1)
 | 
			
		||||
gmake -j"${cpus}" -O
 | 
			
		||||
gmake test
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
# Copyright (c) 2007-2018 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										20
									
								
								conf.d/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								conf.d/Makefile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,20 @@
 | 
			
		||||
include ../mk/net.mk
 | 
			
		||||
 | 
			
		||||
DIR=	${CONFDIR}
 | 
			
		||||
CONF=	bootmisc fsck hostname localmount netmount swap urandom ${CONF-${OS}}
 | 
			
		||||
 | 
			
		||||
ifeq (${MKNET},yes)
 | 
			
		||||
CONF+= network staticroute
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
# We can also specify the passno in /etc/fstab to check
 | 
			
		||||
# If you multiplex fsck (ie ln -s fsck /etc/init.d/fsck.late) then you can
 | 
			
		||||
# do an fsck outside of the normal scope, say for /home.
 | 
			
		||||
# Here are some examples:-
 | 
			
		||||
# Here are some exampes:-
 | 
			
		||||
#fsck_passno="=1 =2"
 | 
			
		||||
#fsck_passno=">1"
 | 
			
		||||
#fsck_passno="<2"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
# ipfw provides a stateful firewall.
 | 
			
		||||
# This means we allow everything out, and if we have a connection we allow it
 | 
			
		||||
# back in. This is very flexible and quite secure.
 | 
			
		||||
# back in. This is very flexable and quite secure.
 | 
			
		||||
 | 
			
		||||
# For ease of use, we allow auth and ssh ports through as well.
 | 
			
		||||
# To override the list of allowed ports
 | 
			
		||||
 
 | 
			
		||||
@@ -4,8 +4,3 @@
 | 
			
		||||
# The setting is called killall5_opts because the options here are meant
 | 
			
		||||
# to be identical to those you could pass to killall5.
 | 
			
		||||
killall5_opts=""
 | 
			
		||||
 | 
			
		||||
# If you need to delay after each kill attempt during shutdown, set the amount
 | 
			
		||||
# of time you need to delay here. This gets passed directly to sleep in
 | 
			
		||||
# the shell.
 | 
			
		||||
# kill_delay=0
 | 
			
		||||
 
 | 
			
		||||
@@ -1,61 +0,0 @@
 | 
			
		||||
conf_d_dir = get_option('sysconfdir') / 'conf.d'
 | 
			
		||||
 | 
			
		||||
conf_common = [
 | 
			
		||||
  'bootmisc',
 | 
			
		||||
  'fsck',
 | 
			
		||||
  'hostname',
 | 
			
		||||
  'localmount',
 | 
			
		||||
  'netmount',
 | 
			
		||||
  'swap',
 | 
			
		||||
  ]
 | 
			
		||||
 | 
			
		||||
conf_net = [
 | 
			
		||||
  'network',
 | 
			
		||||
  'staticroute',
 | 
			
		||||
  ]
 | 
			
		||||
 | 
			
		||||
conf_FreeBSD = [
 | 
			
		||||
  'ipfw',
 | 
			
		||||
  'modules',
 | 
			
		||||
  'moused',
 | 
			
		||||
  'powerd',
 | 
			
		||||
  'rarpd',
 | 
			
		||||
  'savecore',
 | 
			
		||||
  'syscons',
 | 
			
		||||
  'urandom',
 | 
			
		||||
  ]
 | 
			
		||||
 | 
			
		||||
conf_Linux = [
 | 
			
		||||
  'agetty',
 | 
			
		||||
  'consolefont',
 | 
			
		||||
  'devfs',
 | 
			
		||||
  'dmesg',
 | 
			
		||||
  'hwclock',
 | 
			
		||||
  'keymaps',
 | 
			
		||||
  'killprocs',
 | 
			
		||||
  'modules',
 | 
			
		||||
  'mtab',
 | 
			
		||||
  'net-online',
 | 
			
		||||
  'seedrng',
 | 
			
		||||
  ]
 | 
			
		||||
 | 
			
		||||
conf_NetBSD =  [
 | 
			
		||||
  'moused',
 | 
			
		||||
  'rarpd',
 | 
			
		||||
  'savecore',
 | 
			
		||||
  'urandom',
 | 
			
		||||
  ]
 | 
			
		||||
 | 
			
		||||
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,5 +1,5 @@
 | 
			
		||||
# Assign static IP addresses and run custom scripts per interface.
 | 
			
		||||
# Separate commands with ;
 | 
			
		||||
# Seperate commands with ;
 | 
			
		||||
# Prefix with ! to run a shell script.
 | 
			
		||||
# Use \$int to represent the interface
 | 
			
		||||
#ifconfig_eth0="192.168.0.10 netmask 255.255.255.0"
 | 
			
		||||
 
 | 
			
		||||
@@ -3,5 +3,5 @@
 | 
			
		||||
powerd_ac_mode="maximum"
 | 
			
		||||
#powerd_battery_mode="minimum"
 | 
			
		||||
 | 
			
		||||
# Additional arguments for powerd - see the man page for details
 | 
			
		||||
# Addiditonal arguments for powerd - see the man page for details
 | 
			
		||||
powerd_args=""
 | 
			
		||||
 
 | 
			
		||||
@@ -1,14 +0,0 @@
 | 
			
		||||
# The convention in this file is to show the default settings commented out.
 | 
			
		||||
#
 | 
			
		||||
# Sometimes you want to have urandom start before "localmount" (say for crypt
 | 
			
		||||
# swap), so you will need to customize this behavior.  If you have /var on a
 | 
			
		||||
# separate partition, make sure paths under /var are adjusted to point to
 | 
			
		||||
# locations on your root device.
 | 
			
		||||
#
 | 
			
		||||
# Set skip_credit to yes or true if you do not want seed files to actually
 | 
			
		||||
# credit the random number generator. For example, you should set this if you
 | 
			
		||||
# plan to replicate the file system image without removing the contents of
 | 
			
		||||
# ${seed_dir}.
 | 
			
		||||
#
 | 
			
		||||
# seed_dir=/var/lib/seedrng
 | 
			
		||||
# skip_credit=no
 | 
			
		||||
							
								
								
									
										2
									
								
								etc/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								etc/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
rc
 | 
			
		||||
rc.shutdown
 | 
			
		||||
							
								
								
									
										23
									
								
								etc/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								etc/Makefile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
			
		||||
DIR=	${SYSCONFDIR}
 | 
			
		||||
SRCS=	rc.in rc.shutdown.in
 | 
			
		||||
BIN=	${BIN-${OS}}
 | 
			
		||||
CONF=	rc.conf ${BIN-${OS}}
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
SED_EXTRA-FreeBSD=	-e 's:@TERM@:cons25:g'
 | 
			
		||||
BIN-FreeBSD=		rc rc.shutdown rc.devd
 | 
			
		||||
CONF-FreeBSD=		devd.conf
 | 
			
		||||
 | 
			
		||||
SED_EXTRA-Linux=	-e 's:@TERM@:wsvt25:g'
 | 
			
		||||
BIN-Linux=
 | 
			
		||||
CONF-Linux=
 | 
			
		||||
 | 
			
		||||
SED_EXTRA-NetBSD=	-e 's:@TERM@:wsvt25:g'
 | 
			
		||||
BIN-NetBSD=		rc rc.shutdown
 | 
			
		||||
CONF-NetBSD=
 | 
			
		||||
 | 
			
		||||
SED_EXTRA=	${SED_EXTRA-${OS}}
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
@@ -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
 | 
			
		||||
							
								
								
									
										10
									
								
								etc/rc.conf
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								etc/rc.conf
									
									
									
									
									
								
							@@ -116,12 +116,10 @@
 | 
			
		||||
 | 
			
		||||
# Some daemons are started and stopped via start-stop-daemon.
 | 
			
		||||
# We can set some things on a per service basis, like the nicelevel.
 | 
			
		||||
#SSD_NICELEVEL="0"
 | 
			
		||||
#SSD_NICELEVEL="-19"
 | 
			
		||||
# Or the ionice level. The format is class[:data] , just like the
 | 
			
		||||
# --ionice start-stop-daemon parameter.
 | 
			
		||||
#SSD_IONICELEVEL="0:0"
 | 
			
		||||
# Or the OOM score adjustment.
 | 
			
		||||
#SSD_OOM_SCORE_ADJ="0"
 | 
			
		||||
#SSD_IONICELEVEL="2:2"
 | 
			
		||||
 | 
			
		||||
# Pass ulimit parameters
 | 
			
		||||
# If you are using bash in POSIX mode for your shell, note that the
 | 
			
		||||
@@ -290,9 +288,7 @@ rc_tty_number=12
 | 
			
		||||
# To perform this cleanup manually for a stopped service, you can
 | 
			
		||||
# execute cgroup_cleanup with /etc/init.d/<service> cgroup_cleanup or
 | 
			
		||||
# rc-service <service> cgroup_cleanup.
 | 
			
		||||
# If the kernel includes support for cgroup2's cgroup.kill, this is used
 | 
			
		||||
# to reliably teardown the cgroup.
 | 
			
		||||
# If this fails, the process followed in this cleanup is the following:
 | 
			
		||||
# The process followed in this cleanup is the following:
 | 
			
		||||
# 1. send stopsig (sigterm if it isn't set) to all processes left in the
 | 
			
		||||
# cgroup immediately followed by sigcont.
 | 
			
		||||
# 2. Send sighup to all processes in the cgroup if rc_send_sighup is
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -26,7 +26,7 @@ getmedia() {
 | 
			
		||||
if [ ! -e /etc/init.d/"$1" -a ! -e /usr/local/init.d/"$1" ]; then
 | 
			
		||||
	base=${1%%.*}
 | 
			
		||||
	if [ "${base}" = "net" ]; then
 | 
			
		||||
		# We only create links for physical interfaces
 | 
			
		||||
		# We only create links for pyhsical interfaces
 | 
			
		||||
		[ -n "$(getmedia ${1#*.})" ] || exit 1
 | 
			
		||||
		base="net.lo0"
 | 
			
		||||
	fi
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										51
									
								
								init.d/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								init.d/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,51 @@
 | 
			
		||||
agetty
 | 
			
		||||
binfmt
 | 
			
		||||
cgroups
 | 
			
		||||
modules-load
 | 
			
		||||
bootmisc
 | 
			
		||||
fsck
 | 
			
		||||
hostname
 | 
			
		||||
local
 | 
			
		||||
localmount
 | 
			
		||||
loopback
 | 
			
		||||
moused
 | 
			
		||||
netmount
 | 
			
		||||
network
 | 
			
		||||
root
 | 
			
		||||
savecache
 | 
			
		||||
swap
 | 
			
		||||
sysctl
 | 
			
		||||
urandom
 | 
			
		||||
devfs
 | 
			
		||||
dmesg
 | 
			
		||||
hwclock
 | 
			
		||||
consolefont
 | 
			
		||||
keymaps
 | 
			
		||||
killprocs
 | 
			
		||||
modules
 | 
			
		||||
mount-ro
 | 
			
		||||
mtab
 | 
			
		||||
net-online
 | 
			
		||||
numlock
 | 
			
		||||
osclock
 | 
			
		||||
procfs
 | 
			
		||||
s6-svscan
 | 
			
		||||
staticroute
 | 
			
		||||
sysfs
 | 
			
		||||
devdb
 | 
			
		||||
hostid
 | 
			
		||||
newsyslog
 | 
			
		||||
pf
 | 
			
		||||
rarpd
 | 
			
		||||
rc-enabled
 | 
			
		||||
rpcbind
 | 
			
		||||
runsvdir
 | 
			
		||||
savecore
 | 
			
		||||
save-keymaps
 | 
			
		||||
save-termencoding
 | 
			
		||||
swap-blk
 | 
			
		||||
swclock
 | 
			
		||||
syslogd
 | 
			
		||||
termencoding
 | 
			
		||||
ttys
 | 
			
		||||
wscons
 | 
			
		||||
							
								
								
									
										37
									
								
								init.d/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								init.d/Makefile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,37 @@
 | 
			
		||||
include ../mk/net.mk
 | 
			
		||||
 | 
			
		||||
DIR=	${INITDIR}
 | 
			
		||||
SRCS=	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 ${SRCS-${OS}}
 | 
			
		||||
BIN=	${OBJS}
 | 
			
		||||
 | 
			
		||||
# Are we installing our network scripts?
 | 
			
		||||
ifeq (${MKNET},yes)
 | 
			
		||||
SRCS+= network.in staticroute.in
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
MK=	../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
 | 
			
		||||
# Generic BSD scripts
 | 
			
		||||
SRCS-FreeBSD=	hostid.in modules.in moused.in newsyslog.in pf.in rarpd.in \
 | 
			
		||||
		rc-enabled.in rpcbind.in savecore.in syslogd.in
 | 
			
		||||
# These are FreeBSD specific
 | 
			
		||||
SRCS-FreeBSD+=	adjkerntz.in devd.in dumpon.in encswap.in ipfw.in \
 | 
			
		||||
		mixer.in nscd.in powerd.in syscons.in
 | 
			
		||||
 | 
			
		||||
SRCS-Linux=	agetty.in binfmt.in devfs.in cgroups.in dmesg.in hwclock.in \
 | 
			
		||||
	consolefont.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
 | 
			
		||||
 | 
			
		||||
# Generic BSD scripts
 | 
			
		||||
SRCS-NetBSD=	hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
 | 
			
		||||
		rpcbind.in savecore.in syslogd.in
 | 
			
		||||
# These are NetBSD specific
 | 
			
		||||
SRCS-NetBSD+=	devdb.in swap-blk.in ttys.in wscons.in
 | 
			
		||||
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
 | 
			
		||||
_installafter_: realinstall
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -25,7 +25,7 @@ depend() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_pre() {
 | 
			
		||||
	if [ "$port" = "$RC_SVCNAME" ]; then
 | 
			
		||||
	if [ -z "$port" ]; then
 | 
			
		||||
		eerror "${RC_SVCNAME} cannot be started directly. You must create"
 | 
			
		||||
		eerror "symbolic links to it for the ports you want to start"
 | 
			
		||||
		eerror "agetty on and add those to the appropriate runlevels."
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -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
 | 
			
		||||
@@ -226,7 +224,7 @@ start()
 | 
			
		||||
			case "$RC_SYS" in
 | 
			
		||||
				VSERVER|OPENVZ|LXC|SYSTEMD-NSPAWN) ;;
 | 
			
		||||
				*)
 | 
			
		||||
					if yesno ${previous_dmesg:-no} && [ -e /var/log/dmesg ]; then
 | 
			
		||||
					if yesno ${previous_dmesg:-no}; then
 | 
			
		||||
						mv /var/log/dmesg /var/log/dmesg.old
 | 
			
		||||
					fi
 | 
			
		||||
					dmesg > /var/log/dmesg
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2017 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2008-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -24,9 +24,8 @@ mount_dev()
 | 
			
		||||
	action=--mount
 | 
			
		||||
	conf_d_dir="${RC_SERVICE%/*/*}/conf.d"
 | 
			
		||||
	msg=Mounting
 | 
			
		||||
	# Some devices require exec, https://bugs.gentoo.org/92921
 | 
			
		||||
	# Users with such requirements can use an fstab entry for /dev
 | 
			
		||||
	mountopts="noexec,nosuid,mode=0755"
 | 
			
		||||
	# Some devices require exec, Bug #92921
 | 
			
		||||
	mountopts="exec,nosuid,mode=0755"
 | 
			
		||||
	if yesno ${skip_mount_dev:-no} ; then
 | 
			
		||||
		einfo "/dev will not be mounted due to user request"
 | 
			
		||||
		return 0
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -106,7 +106,7 @@ start()
 | 
			
		||||
			_abort
 | 
			
		||||
		fi;;
 | 
			
		||||
	4)	if [ "$RC_UNAME" = Linux ]; then
 | 
			
		||||
			ewend 1 "Filesystem errors left uncorrected, aborting"
 | 
			
		||||
			ewend 1 "Fileystem errors left uncorrected, aborting"
 | 
			
		||||
			_abort
 | 
			
		||||
		else
 | 
			
		||||
		 	ewend 1 "Filesystems repaired, but reboot needed"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -19,18 +19,20 @@ depend()
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	local h source
 | 
			
		||||
	if read -r h _ 2> /dev/null < @SYSCONFDIR@/hostname; then
 | 
			
		||||
		source="@SYSCONFDIR@/hostname"
 | 
			
		||||
	elif [ -n "${hostname}" ]; then
 | 
			
		||||
		h=${hostname}
 | 
			
		||||
		source="@SYSCONFDIR@/conf.d/${RC_SVCNAME}"
 | 
			
		||||
	local h source x
 | 
			
		||||
	if [ -s /etc/hostname ] && [ -r /etc/hostname ]; then
 | 
			
		||||
		read h x </etc/hostname
 | 
			
		||||
		source="from /etc/hostname"
 | 
			
		||||
	else
 | 
			
		||||
		# HOSTNAME variable used to be defined in caps in conf.d/hostname.
 | 
			
		||||
		# It is also a magic variable in bash.
 | 
			
		||||
		h=${hostname:-${HOSTNAME}} # checkbashisms: false positive (HOSTNAME var)
 | 
			
		||||
	fi
 | 
			
		||||
	if [ -z "$h" ]; then
 | 
			
		||||
		einfo "Using default system hostname"
 | 
			
		||||
		return 0
 | 
			
		||||
	fi
 | 
			
		||||
	ebegin "Setting hostname to $h from $source"
 | 
			
		||||
	ebegin "Setting hostname to $h $source"
 | 
			
		||||
	hostname "$h"
 | 
			
		||||
	eend $? "Failed to set the hostname"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -122,7 +122,7 @@ start() {
 | 
			
		||||
		ipfw add deny { tcp or udp } from any to any $p in
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
	# Broadcasts and multicasts
 | 
			
		||||
	# Broadcasts and muticasts
 | 
			
		||||
	ipfw add deny ip from any to 255.255.255.255
 | 
			
		||||
	ipfw add deny ip from any to 224.0.0.0/24
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -20,10 +20,8 @@ start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Terminating remaining processes"
 | 
			
		||||
	kill_all 15 ${killall5_opts}
 | 
			
		||||
	sleep ${kill_delay:-0}
 | 
			
		||||
	eend 0
 | 
			
		||||
	ebegin "Killing remaining processes"
 | 
			
		||||
	sleep ${kill_delay:-0}
 | 
			
		||||
	kill_all 9 ${killall5_opts}
 | 
			
		||||
	eend 0
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -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,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2013-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,101 +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',
 | 
			
		||||
  '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',
 | 
			
		||||
  'seedrng.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',
 | 
			
		||||
  'urandom.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
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,15 +1,15 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
description="Re-mount filesystems read-only for a clean reboot."
 | 
			
		||||
description="Re-mount filesytems read-only for a clean reboot."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -68,7 +68,6 @@ start ()
 | 
			
		||||
			ping -c 1 $ping_test_host > /dev/null 2>&1
 | 
			
		||||
			rc=$?
 | 
			
		||||
			[ $rc -eq 0 ] && break
 | 
			
		||||
			sleep 1
 | 
			
		||||
			: $((timeout -= 1))
 | 
			
		||||
		done
 | 
			
		||||
	fi
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2009-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2014-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,17 +1,17 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2016 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
supervisor=supervise-daemon
 | 
			
		||||
command=/usr/bin/runsvdir
 | 
			
		||||
pidfile="/var/run/${RC_SVCNAME}.pid"
 | 
			
		||||
command_background=yes
 | 
			
		||||
pidfile=/var/run/runsvdir.pid
 | 
			
		||||
command_args="-P $RC_SVCDIR/sv 'log: ...........................................................................................................................................................................................................................................................................................................................................................................................................'"
 | 
			
		||||
 | 
			
		||||
start_pre()
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -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()
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
#
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
#
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,44 +0,0 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2022 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/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/HEAD/LICENSE
 | 
			
		||||
# This file may not be copied, modified, propagated, or distributed
 | 
			
		||||
# except according to the terms contained in the LICENSE file.
 | 
			
		||||
 | 
			
		||||
description="Initializes the random number generator."
 | 
			
		||||
 | 
			
		||||
depend()
 | 
			
		||||
{
 | 
			
		||||
	after clock
 | 
			
		||||
	need localmount
 | 
			
		||||
	keyword -docker -jail -lxc -openvz -prefix -systemd-nspawn
 | 
			
		||||
	provide urandom
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
seedrng_with_options()
 | 
			
		||||
{
 | 
			
		||||
	set --
 | 
			
		||||
	[ -n "${seed_dir}" ] && set -- "$@" --seed-dir "${seed_dir}"
 | 
			
		||||
	yesno "${skip_credit}" && set -- "$@" --skip-credit
 | 
			
		||||
	seedrng "$@"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Seeding random number generator"
 | 
			
		||||
	seedrng_with_options
 | 
			
		||||
	eend $? "Error seeding random number generator"
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
stop()
 | 
			
		||||
{
 | 
			
		||||
	ebegin "Saving random number generator seed"
 | 
			
		||||
	seedrng_with_options
 | 
			
		||||
	eend $? "Error saving random number generator seed"
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2009-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2009-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2008-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2008-2015 The OpenRC Authors.
 | 
			
		||||
# See the Authors file at the top-level directory of this distribution and
 | 
			
		||||
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# Copyright (c) 2007-2022 The OpenRC Authors.
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
@@ -21,9 +21,15 @@ depend()
 | 
			
		||||
 | 
			
		||||
save_seed()
 | 
			
		||||
{
 | 
			
		||||
	local psz=1
 | 
			
		||||
 | 
			
		||||
	if [ -e /proc/sys/kernel/random/poolsize ]; then
 | 
			
		||||
		: $(( psz = $(cat /proc/sys/kernel/random/poolsize) / 4096 ))
 | 
			
		||||
	fi
 | 
			
		||||
 | 
			
		||||
	(	# sub shell to prevent umask pollution
 | 
			
		||||
		umask 077
 | 
			
		||||
		dd if=/dev/urandom of="$urandom_seed" count=1 2>/dev/null
 | 
			
		||||
		dd if=/dev/urandom of="$urandom_seed" count=${psz} 2>/dev/null
 | 
			
		||||
	)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
#!@SBINDIR@/openrc-run
 | 
			
		||||
# 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/HEAD/AUTHORS
 | 
			
		||||
# 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/HEAD/LICENSE
 | 
			
		||||
# 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.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								local.d/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								local.d/Makefile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
DIR=	${LOCALDIR}
 | 
			
		||||
CONF=	README
 | 
			
		||||
 | 
			
		||||
MK=		../mk
 | 
			
		||||
include ${MK}/os.mk
 | 
			
		||||
include ${MK}/scripts.mk
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user