Compare commits
89 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d0160dd96e | ||
|
|
eca4c2d31e | ||
|
|
6a91444bd9 | ||
|
|
075fb7c646 | ||
|
|
7f597d024a | ||
|
|
27219666ab | ||
|
|
76022cba36 | ||
|
|
792dc7f6e8 | ||
|
|
b5d576255b | ||
|
|
45d1494b5d | ||
|
|
20856a14e9 | ||
|
|
a850651f5c | ||
|
|
b0a80a042d | ||
|
|
49620e95ec | ||
|
|
b4789b9910 | ||
|
|
d5ae8a2ad1 | ||
|
|
3a276728e0 | ||
|
|
29d3e0bde2 | ||
|
|
969a036225 | ||
|
|
9767d24510 | ||
|
|
c73284ef96 | ||
|
|
0657bf0d25 | ||
|
|
80aad11b02 | ||
|
|
2d9dc654b5 | ||
|
|
f46cc83ef7 | ||
|
|
cc45b55f89 | ||
|
|
930e69017f | ||
|
|
44912434cf | ||
|
|
c7fde9a3da | ||
|
|
ffededbf95 | ||
|
|
b0efb663f9 | ||
|
|
aa69e48125 | ||
|
|
4ba10f1d50 | ||
|
|
38a9e2ff63 | ||
|
|
783af5abac | ||
|
|
75c3b53e31 | ||
|
|
c300c180a2 | ||
|
|
be8d2ee6e3 | ||
|
|
d9ef1bb635 | ||
|
|
cfc6991219 | ||
|
|
97ae5af201 | ||
|
|
4c820a0e48 | ||
|
|
9c39b381a5 | ||
|
|
321bb2cd90 | ||
|
|
8c99d817d4 | ||
| 2e1fb4d02b | |||
|
|
a2f0afb8bc | ||
|
|
430fa132f2 | ||
|
|
12cd7ce9de | ||
|
|
167acac140 | ||
|
|
f839ba27c5 | ||
|
|
80dd6aac5f | ||
|
|
0d00b8d8ab | ||
|
|
551bdff2fb | ||
|
|
803aa1c637 | ||
|
|
fb186a3867 | ||
|
|
c9b64b64fa | ||
|
|
9cce9f8ce8 | ||
|
|
5a41f1ef20 | ||
|
|
6e3afc29f3 | ||
|
|
7c29fbd36f | ||
|
|
593be166d1 | ||
|
|
ca0270967c | ||
|
|
3a187f88f4 | ||
|
|
f2362cc277 | ||
|
|
444e44eb9d | ||
|
|
c0f8313164 | ||
|
|
d6622a1156 | ||
|
|
92004a2ed6 | ||
|
|
5f6d7ac028 | ||
|
|
7cedc4942b | ||
|
|
091cd8015f | ||
|
|
63955056ec | ||
|
|
1e975be896 | ||
|
|
18e53f7fed | ||
|
|
b5e4c2c2db | ||
|
|
0a97bad6c9 | ||
|
|
dec9ef200b | ||
|
|
7f47539fb1 | ||
|
|
9c7bedca9e | ||
|
|
1d282ddc80 | ||
|
|
0d86c4903b | ||
|
|
791322d7fa | ||
|
|
63db2d99e7 | ||
|
|
8400e7d302 | ||
|
|
533a8c70b3 | ||
|
|
852a3c86f6 | ||
|
|
b3e8072403 | ||
|
|
b7c03dea27 |
@@ -4,7 +4,8 @@
|
|||||||
test_task:
|
test_task:
|
||||||
freebsd_instance:
|
freebsd_instance:
|
||||||
matrix:
|
matrix:
|
||||||
image: freebsd-12-1-release-amd64
|
image: freebsd-13-0-release-amd64
|
||||||
|
image: freebsd-12-2-release-amd64
|
||||||
image: freebsd-11-4-release-amd64
|
image: freebsd-11-4-release-amd64
|
||||||
env:
|
env:
|
||||||
OS: FreeBSD
|
OS: FreeBSD
|
||||||
|
|||||||
26
.github/workflows/ci-alpine-linux.yml
vendored
Normal file
26
.github/workflows/ci-alpine-linux.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
name: ci_alpine_linux
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
gcc-musl:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: alpine:latest
|
||||||
|
steps:
|
||||||
|
- name: install deps
|
||||||
|
run: >-
|
||||||
|
apk --no-cache add \
|
||||||
|
build-base \
|
||||||
|
meson \
|
||||||
|
pkgconf \
|
||||||
|
linux-pam \
|
||||||
|
linux-pam-dev
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- run: meson setup builddir/
|
||||||
|
env:
|
||||||
|
CC: gcc
|
||||||
|
- run: ninja -C builddir
|
||||||
|
env:
|
||||||
|
CC: gcc
|
||||||
32
.github/workflows/ci-ubuntu.yml
vendored
Normal file
32
.github/workflows/ci-ubuntu.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
name: ci_ubuntu
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
gcc-glibc:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: sudo apt-get update -q
|
||||||
|
- run: sudo apt-get install -q -y build-essential libpam-dev meson
|
||||||
|
- run: meson setup builddir/
|
||||||
|
env:
|
||||||
|
CC: gcc
|
||||||
|
- run: ninja -C builddir
|
||||||
|
env:
|
||||||
|
CC: gcc
|
||||||
|
|
||||||
|
|
||||||
|
clang-glibc:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: sudo apt-get update -q
|
||||||
|
- run: sudo apt-get install -q -y build-essential clang libpam-dev meson
|
||||||
|
- run: meson setup builddir/
|
||||||
|
env:
|
||||||
|
CC: clang
|
||||||
|
- run: ninja -C builddir
|
||||||
|
env:
|
||||||
|
CC: clang
|
||||||
@@ -19,8 +19,8 @@ addons:
|
|||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels:
|
channels:
|
||||||
- "irc.freenode.org#openrc"
|
- "irc.libera.chat#openrc"
|
||||||
on_success: change # options: [always|never|change] default: always
|
on_success: always # options: [always|never|change] default: always
|
||||||
on_failure: always # options: [always|never|change] default: always
|
on_failure: always # options: [always|never|change] default: always
|
||||||
on_start: false # default: false
|
on_start: false # default: false
|
||||||
|
|
||||||
|
|||||||
927
ChangeLog
927
ChangeLog
@@ -1,4 +1,748 @@
|
|||||||
commit 99565e359f3081e053573d10756e1a756c56342b
|
commit eca4c2d31efc29ed653dbcfc3a3cc043d24bd08d
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
support/init.d.examples: Do not use @PKG_PREFIX@ in service examples
|
||||||
|
|
||||||
|
I can't think of a reason to do this since these scripts are just
|
||||||
|
examples.
|
||||||
|
|
||||||
|
This is for #474.
|
||||||
|
|
||||||
|
commit 6a91444bd9f7f122f580d1297f33d58d5b518359
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
meson: fallback to libcrypt detection outside of pkg-config
|
||||||
|
|
||||||
|
Much like PAM, not all implementations of libcrypt provide a pkg-config
|
||||||
|
file, and hence we can't find it using the old logic.
|
||||||
|
|
||||||
|
Let's fall back to the standard AC_SEARCH_LIBS-style check if the pkg-config-style
|
||||||
|
detection fails.
|
||||||
|
|
||||||
|
This fixes finding e.g. musl's libcrypt.
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 827074
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/827074
|
||||||
|
|
||||||
|
commit 075fb7c6465824b51881fa47c6419650011f4e0f
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
src/rc/rc-selinux.c: fix use of deprecated security_context_t
|
||||||
|
|
||||||
|
It's only a char* and has been deprecated upstream [0].
|
||||||
|
|
||||||
|
[0] https://github.com/SELinuxProject/selinux/commit/7a124ca27581
|
||||||
|
|
||||||
|
Fixes: #478
|
||||||
|
|
||||||
|
commit 7f597d024af1612d8a104ed6fe591aae71105220
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
meson: only find libcrypt if SELinux and no PAM
|
||||||
|
|
||||||
|
We only need libcrypt if we're building _with_ SELinux and
|
||||||
|
_without_ PAM. We don't use libcrypt for general SELinux
|
||||||
|
with PAM.
|
||||||
|
|
||||||
|
This is mostly a correctness change as libcrypt should
|
||||||
|
generally be available (as opposed to the previous
|
||||||
|
change which fixed some real-world cases).
|
||||||
|
|
||||||
|
Fixes: f3f0fde861b438c80f99afdd49fe175e9d0a68ca
|
||||||
|
Fixes: #478
|
||||||
|
|
||||||
|
commit 27219666abf15117c8722dcd716681f7e6e957bf
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
meson: link against libcrypt for SELinux if no PAM
|
||||||
|
|
||||||
|
We use libcrypt's crypt() if we're _not_ using PAM
|
||||||
|
in the SELinux code (rc-selinux, specifically).
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 824954
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/824954
|
||||||
|
Fixes: https://github.com/openrc/openrc/pull/477
|
||||||
|
|
||||||
|
commit 76022cba36a5281f1da227a40f7fe7d805b85426
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
meson: fix pam_misc_dep definition
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 824954
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/824954
|
||||||
|
Fixes: https://github.com/OpenRC/openrc/issues/470
|
||||||
|
Fixes: https://github.com/OpenRC/openrc/pull/477
|
||||||
|
|
||||||
|
commit 792dc7f6e8f31acace120b9e562412517ccea9d8
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
src/librc/librc-daemon.c: add missing include for kill (fix uclibc)
|
||||||
|
|
||||||
|
Fixes: #471
|
||||||
|
Fixes: #473
|
||||||
|
|
||||||
|
commit b5d576255bbe7ca3175046540a28d9613d40f9eb
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
src/librc/librc-misc.c: add missing include for fileno (fix uclibc)
|
||||||
|
|
||||||
|
Fixes: #471
|
||||||
|
Fixes: #473
|
||||||
|
|
||||||
|
commit 45d1494b5d741d1f061c5a28e2ef8b506d36249d
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.8
|
||||||
|
|
||||||
|
commit 20856a14e9e045fc2ab3d87a2a7f5e1408d1914f
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit a850651f5ce29a37574f7d76ae40ef9e1d2d4a62
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
openrc-init: fix build for selinux
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 821520
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=821520
|
||||||
|
|
||||||
|
commit b0a80a042d20d3d0ee4d204c5c96e1538a65575f
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: pam fix
|
||||||
|
|
||||||
|
Set the HAVE_PAM option if the dependency is found *and* pam is
|
||||||
|
requested.
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 821211
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=821211
|
||||||
|
|
||||||
|
commit 49620e95ec8ecd5d91c554d8e50cdf65df1920b5
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
fix permission of installed version file
|
||||||
|
|
||||||
|
commit b4789b99104f08136ad160920388b8d4df000508
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.7
|
||||||
|
|
||||||
|
commit d5ae8a2ad1b66f4f20609b3eadf9968b36133f7a
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit 3a276728e079aa9f44ab19cf5858e1eac2670462
|
||||||
|
Author: Kerin Millar <kfm@plushkava.net>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
init.d/s6-svscan.in: make sure $command exists
|
||||||
|
|
||||||
|
While the s6-svscan runscript belongs to OpenRC, the user is required to
|
||||||
|
install s6 before it can actually be used, potentially leading to
|
||||||
|
confusion. Check for the existence of $command in start_pre and, if it does not
|
||||||
|
exist, bail out with an error that makes this observation.
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 816978
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=816978
|
||||||
|
|
||||||
|
commit 29d3e0bde237e13f8c5083d2f0db50652061bf2c
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
selinux build fix
|
||||||
|
|
||||||
|
commit 969a0362252a7f9459337ac564ebf5f0c2c74476
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
fix bug in pam build tests
|
||||||
|
|
||||||
|
commit 9767d24510e1d52b86a2051c25af2fa5928e7319
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
support older pam versions
|
||||||
|
|
||||||
|
Some distros are still using versions of pam which do not create
|
||||||
|
*.pc files, so we need fallback logic for that situation.
|
||||||
|
|
||||||
|
commit c73284ef963cd6b3c47dd007a45f5c13c5dafcb0
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: fix pam and pam_misc dependencies
|
||||||
|
|
||||||
|
Pam generates pkgconfig files now, so meson can use them to find the pam
|
||||||
|
dependencies.
|
||||||
|
|
||||||
|
commit 0657bf0d25a460b4b56579984eb326302f3bf121
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
separate github actions based on OS
|
||||||
|
|
||||||
|
This fixes #466.
|
||||||
|
|
||||||
|
commit 80aad11b02d575d5a949914bb6942b92fc15e834
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
add github action to build on several linux platforms
|
||||||
|
|
||||||
|
This github action runs a build on each of the following platforms on a
|
||||||
|
push or pull request.
|
||||||
|
|
||||||
|
- Ubuntu LTS with gcc and glibc
|
||||||
|
- Ubuntu LTS with clang and glibc
|
||||||
|
- Alpine with gcc and musl
|
||||||
|
|
||||||
|
This fixes #463.
|
||||||
|
|
||||||
|
commit 2d9dc654b58c4a523b01097369ce94708c8cf43a
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
.cirrus.yml: update FreeBSD images
|
||||||
|
|
||||||
|
commit f46cc83ef7100ce713c4e616524e63371825e153
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
move rc_bindir and rc_sbindir definitions to the top level
|
||||||
|
|
||||||
|
commit cc45b55f895d0c21b5ac3e5a65b0bf00f76adeb7
|
||||||
|
Author: Sam James <sam@gentoo.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
checkpath: fix allocation size of path buffer
|
||||||
|
|
||||||
|
strlen's return value isn't enough to be used
|
||||||
|
directly for (x)malloc; it doesn't include
|
||||||
|
the null byte at the end of the string.
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 816900
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/816900
|
||||||
|
Fixes: #459
|
||||||
|
Fixes: #462
|
||||||
|
|
||||||
|
commit 930e69017f95766c662763c2445e2827eb037fd7
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.6
|
||||||
|
|
||||||
|
commit 44912434cfe139a1953bbd3b2cde7e0b2bce0ae7
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit c7fde9a3dab01d30d16f9907f7cce00799f92821
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
fix build for selinux
|
||||||
|
|
||||||
|
I would like to thank jpds@protonmail.com for the patch.
|
||||||
|
|
||||||
|
X-Gentoo-Bug: 815847
|
||||||
|
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=815847
|
||||||
|
|
||||||
|
commit ffededbf955e39add0fbbacc22f2c0d7a8901b35
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.5
|
||||||
|
|
||||||
|
commit b0efb663f9ed84627c302a2d051fc5a74fb0c2b6
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit aa69e48125df7684ab3b77eaf9013f8c126b1fca
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: fix rootprefix
|
||||||
|
|
||||||
|
This fixes #438.
|
||||||
|
|
||||||
|
commit 4ba10f1d5074a45b4ddd96d2d404842fa3b38e63
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
link runscript with audit
|
||||||
|
|
||||||
|
commit 38a9e2ff630b0e0bd261afb2e66072f904b5d608
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
link openrc-run with audit and libpam_misc
|
||||||
|
|
||||||
|
commit 783af5abac209c7745fd5c06dc89b2f5dfa3b313
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.4
|
||||||
|
|
||||||
|
commit 75c3b53e3195f2d3541a7d83920667d1c4b14337
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit c300c180a2a7dbefb46272c2acac6462372b8eb0
|
||||||
|
Author: Natanael Copa <ncopa@alpinelinux.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
hide error when migrating /var/run to /run
|
||||||
|
|
||||||
|
The script tries to copy non-existing files. We simply hide the error
|
||||||
|
|
||||||
|
http://bugs.alpinelinux.org/issues/3160
|
||||||
|
This fixes #451.
|
||||||
|
|
||||||
|
commit be8d2ee6e35a6ea504e6a3cf725b8804dd2da617
|
||||||
|
Author: Natanael Copa <ncopa@alpinelinux.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
force root to be rw before localmount
|
||||||
|
|
||||||
|
The original service that pulled in root remount was mtab which
|
||||||
|
is not part of OpenRC.
|
||||||
|
|
||||||
|
This fixes #449.
|
||||||
|
|
||||||
|
commit d9ef1bb6355c62e335a972f203806210de68912f
|
||||||
|
Author: Aaditya Bagga <aaditya_gnulinux@zoho.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
[runit integration] give a bit of time to start the service
|
||||||
|
|
||||||
|
Currently, we run sv start immediately after linking the service.
|
||||||
|
The runsv process may not be up at the moment, as a result of which
|
||||||
|
openrc will mark the service as stopped, even though it may be brought up
|
||||||
|
by runit at the next scan.
|
||||||
|
|
||||||
|
This is documented in the gentoo wiki:
|
||||||
|
https://wiki.gentoo.org/wiki/Runit#OpenRC.27s_runit_integration_feature
|
||||||
|
|
||||||
|
This PR adds a timeout so that correct process state can be reported.
|
||||||
|
|
||||||
|
Before:
|
||||||
|
* Starting netdata-runit ...
|
||||||
|
fail: /run/openrc/sv/netdata: runsv not running
|
||||||
|
* Failed to start netdata-runit
|
||||||
|
|
||||||
|
After:
|
||||||
|
* Starting netdata-runit ...
|
||||||
|
fail: /run/openrc/sv/netdata: runsv not running
|
||||||
|
ok: run: /run/openrc/sv/netdata: (pid 9042) 0s
|
||||||
|
|
||||||
|
This fixes #253.
|
||||||
|
|
||||||
|
commit cfc699121960a8298c8e9519239c149f31a35ef0
|
||||||
|
Author: Jakub Jirutka <jakub@jirutka.cz>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
Fix undeclared UT_LINESIZE
|
||||||
|
|
||||||
|
Fix the following error:
|
||||||
|
|
||||||
|
broadcast.c:41:21: error: '__UT_LINESIZE' undeclared (first use in this function); did you mean 'UT_LINESIZE'?
|
||||||
|
#define UT_LINESIZE __UT_LINESIZE
|
||||||
|
^~~~~~~~~~
|
||||||
|
|
||||||
|
Constant UT_LINESIZE is defined in <utmp.h> provided by musl.
|
||||||
|
|
||||||
|
commit 97ae5af2017df2667e0c79d7dac3706b3a93c6cc
|
||||||
|
Author: Sören Tempel <soeren+git@soeren-tempel.net>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
rc-mount: make timeout invocation compatible with busybox timeout
|
||||||
|
|
||||||
|
Busybox timeout does not support the `-k` flag. As such, invoking fuser
|
||||||
|
from do_unmount never worked without this patch. This went unnoticed as
|
||||||
|
standard error is redirected to /dev/null. This patch fixes this by
|
||||||
|
simply removing the incompatible `-k` flag.
|
||||||
|
|
||||||
|
[Ariadne: the `-k` is redundant anyway, since we are sending the KILL
|
||||||
|
signal to begin with.]
|
||||||
|
|
||||||
|
commit 4c820a0e48301f997911a196d6159670dad68296
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.3
|
||||||
|
|
||||||
|
commit 9c39b381a5185325dc1359b6001f00e60732ec71
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit 321bb2cd90cf673d03175c56bf1cecfcef02bd49
|
||||||
|
Author: Ariadne Conill <ariadne@dereferenced.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
fix build under musl 1.2 on 32 bit systems
|
||||||
|
|
||||||
|
Since musl 1.2 time_t is a 64 bit value, even on 32 bit systems. A
|
||||||
|
hotfix for printing the value is simply using PRIu64 from inttypes.h
|
||||||
|
in the format string.
|
||||||
|
|
||||||
|
This fixes #446.
|
||||||
|
|
||||||
|
commit 8c99d817d48bc879504b8973d868e1718f4e7d12
|
||||||
|
Author: Ariadne Conill <ariadne@dereferenced.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
fix trailing whitespace in tools/meson_runlevels.sh
|
||||||
|
|
||||||
|
commit 2e1fb4d02b1ad294394107642aed07f057e6a8b9
|
||||||
|
Author: artoo <artoo@artixlinux.org>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
meson: fix symlinks with sysvinit
|
||||||
|
|
||||||
|
commit a2f0afb8bcb024c8d532d8be8b855d72f999aab8
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.2
|
||||||
|
|
||||||
|
commit 430fa132f2596de126f8461f361333c89b794945
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit 12cd7ce9dea73926c203c5d64e425d51e209425a
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: install pam files
|
||||||
|
|
||||||
|
commit 167acac1407782d454be2cc413431c00498e94ed
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
meson: typo fix
|
||||||
|
|
||||||
|
commit f839ba27c5e52990ca9c6431bba4455a1124f81d
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44.1
|
||||||
|
|
||||||
|
commit 80dd6aac5fcb1f17b86d35db2babe487b90d7081
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit 0d00b8d8abe33c4d824446ed989e8cc3166590b4
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: fix sysvinit script installation
|
||||||
|
|
||||||
|
commit 551bdff2fbe61452187d5d492377b876e868a9fb
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: fix symlinks
|
||||||
|
|
||||||
|
commit 803aa1c637c42352c05a520dbb02bee6c03ccf75
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
version 0.44
|
||||||
|
|
||||||
|
commit fb186a38673201a7a25d6a7c1516fcb734020ee1
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update ChangeLog
|
||||||
|
|
||||||
|
commit c9b64b64fa9b2d2ee31684e8d35375f4c5bddba1
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update README
|
||||||
|
|
||||||
|
commit 9cce9f8ce8d2624ac5fa1cf12d0b4b00de5bcde2
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
news typo fix
|
||||||
|
|
||||||
|
commit 5a41f1ef201def94392f06d3b294e5e0c2c8432f
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
add discussion about removing old build system to NEWS
|
||||||
|
|
||||||
|
commit 6e3afc29f3005bca7c86e3faa7b8b2d9ede08efb
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
update NEWS
|
||||||
|
|
||||||
|
commit 7c29fbd36f87426b78fe4baa6eb1a68661fc1374
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: install bash and zsh completions
|
||||||
|
|
||||||
|
commit 593be166d16e371837d85ff4e963cf8c71b569c7
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: fix libexecdir
|
||||||
|
|
||||||
|
commit ca0270967c880ef87dbaea04c267c5c463377b2e
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
tools/meson_final.sh: typo fix
|
||||||
|
|
||||||
|
commit 3a187f88f47517b1fb0ee1247c79ab06899928f6
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: typo fix
|
||||||
|
|
||||||
|
commit f2362cc277023550b2482215b4a1cd7142639427
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: add split-usr option
|
||||||
|
|
||||||
|
commit 444e44eb9da303c6614034a3558daceca15e0315
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
build: change root_prefix to rootprefix
|
||||||
|
|
||||||
|
commit c0f8313164fb60fcf41313b273b21f3079e93c1e
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
sync meson build version with makefiles
|
||||||
|
|
||||||
|
commit d6622a1156929294b909d08273fd227c7d817bb9
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
add meson build files
|
||||||
|
|
||||||
|
Closes #116.
|
||||||
|
Closes #171.
|
||||||
|
Closes #172.
|
||||||
|
Closes #175.
|
||||||
|
|
||||||
|
commit 92004a2ed65045b7ca79063dda8fc5b4ac761606
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
README: add note about github discussions
|
||||||
|
|
||||||
|
commit 5f6d7ac028b4e3c208a74465c54f235d5bf34a93
|
||||||
|
Author: Matt Whitlock <gentoo@mattwhitlock.name>
|
||||||
|
Commit: Mike Frysinger <vapier@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 7cedc4942b8e52d9bab6f4aa7bb595c53aa6fdb1
|
||||||
|
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 091cd8015f25d283760c39dcb9bd7e9d56eef7c4
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
man/supervise-daemon.8: document --pidfile option
|
||||||
|
|
||||||
|
commit 63955056ecb98faa1a02d90d5a4742515f0299c8
|
||||||
|
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 1e975be89670f53db47aeef3dbb3361166517c26
|
||||||
|
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 18e53f7fed1a92dd6dc91e79ab620d22fee1e195
|
||||||
|
Author: kyoreln <57618278+kyoreln@users.noreply.github.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
move supervise-daemon out of experimental status
|
||||||
|
|
||||||
|
supervise-daemon is no longer experimental so remove the statements to
|
||||||
|
that affect.
|
||||||
|
|
||||||
|
This fixes #434.
|
||||||
|
|
||||||
|
commit b5e4c2c2db3d32dcc70426e058132c52e32603f1
|
||||||
|
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 dec9ef200b0d7e96993e2725792a9e7abe9c5f1f.
|
||||||
|
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 0a97bad6c9ba77285477aef8713e088eea4ab106
|
||||||
|
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 dec9ef200b0d7e96993e2725792a9e7abe9c5f1f
|
||||||
|
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 7f47539fb1992fa4f1c9ae7d039d21404d2eae71
|
||||||
|
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 9c7bedca9e0a51343058b9e44ed8e3b5b9d337be
|
||||||
|
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 1d282ddc80b2dcd9adbff7d662822fcd7e0c10e5
|
||||||
|
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 0d86c4903bdc68d2d4704ab6c2d4fc8f2c054276
|
||||||
|
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 791322d7fa9d5bbceed558258baeff51a39787c5
|
||||||
|
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 63db2d99e730547339d1bdd28e8437999c380cae
|
||||||
|
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 8400e7d3025a2957960e3f4ee3cb37a376235886
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
style fix
|
||||||
|
|
||||||
|
commit 533a8c70b3b757d2ca06de7392805ab5d1698a53
|
||||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
@@ -8,6 +752,27 @@ Commit: William Hubbs <w.d.hubbs@gmail.com>
|
|||||||
generating an error message. If we return immediately when
|
generating an error message. If we return immediately when
|
||||||
cgroup2_find_path returns an empty value, we avoid this message.
|
cgroup2_find_path returns an empty value, we avoid this message.
|
||||||
|
|
||||||
|
commit 852a3c86f66829864d5c0b7d0bd88841ac6b23a8
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
NEWNET.md: fix the title
|
||||||
|
|
||||||
|
commit b3e8072403759d6cf0d89acc41443ea9ab6bd908
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
rename README.newnet to a markdown file
|
||||||
|
|
||||||
|
All of our documentation is in markdown, so rename this file to be
|
||||||
|
consistent.
|
||||||
|
|
||||||
|
commit b7c03dea27bc0a4474702f2c7fedd753c560ae2e
|
||||||
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
|
|
||||||
|
README: convert references to markdown links
|
||||||
|
|
||||||
commit ee05403c501b5f0c0a955b1f8d67b2d88f0ede7a
|
commit ee05403c501b5f0c0a955b1f8d67b2d88f0ede7a
|
||||||
Author: William Hubbs <w.d.hubbs@gmail.com>
|
Author: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
Commit: William Hubbs <w.d.hubbs@gmail.com>
|
||||||
@@ -271,163 +1036,3 @@ Commit: William Hubbs <w.d.hubbs@gmail.com>
|
|||||||
|
|
||||||
This fixes #375 and allows us to not add another level of indentation in
|
This fixes #375 and allows us to not add another level of indentation in
|
||||||
the supervisor loop.
|
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
|
|
||||||
|
|
||||||
commit fbec1eed51c85c53b39f97a213479caa0a2b75ab
|
|
||||||
Author: Manuel Rüger <manuel@rueg.eu>
|
|
||||||
Commit: Manuel Rüger <manuel@rueg.eu>
|
|
||||||
|
|
||||||
.cirrus.yml: Update FreeBSD releases
|
|
||||||
|
|
||||||
Signed-off-by: Manuel Rüger <manuel@rueg.eu>
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
NAME= openrc
|
NAME= openrc
|
||||||
VERSION= 0.43.1
|
VERSION= 0.44.8
|
||||||
PKG= ${NAME}-${VERSION}
|
PKG= ${NAME}-${VERSION}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
OpenRC Network Ideals
|
OpenRC Network Ideals
|
||||||
---------------------
|
=====================
|
||||||
|
|
||||||
The new style networking for OpenRC is very simplistic - provide a basic means
|
The new style networking for OpenRC is very simplistic - provide a basic means
|
||||||
of configuring static interface address and routes whilst allowing the
|
of configuring static interface address and routes whilst allowing the
|
||||||
11
NEWS.md
11
NEWS.md
@@ -4,11 +4,20 @@ OpenRC NEWS
|
|||||||
This file will contain a list of notable changes for each release. Note
|
This file will contain a list of notable changes for each release. Note
|
||||||
the information in this file is in reverse order.
|
the information in this file is in reverse order.
|
||||||
|
|
||||||
|
## OpenRC 0.44
|
||||||
|
|
||||||
|
This version is the first to use a meson-based build system.
|
||||||
|
The gnu make build system should now be considered deprecated; it will
|
||||||
|
be removed sometime after 0.44.x.
|
||||||
|
|
||||||
|
I have opened a [discussion](https://github.com/OpenRC/openrc/discussions/441)
|
||||||
|
where you can voice concerns about removing it.
|
||||||
|
|
||||||
## OpenRC 0.43
|
## OpenRC 0.43
|
||||||
|
|
||||||
This version changes the behavior of the checkpath helper to address
|
This version changes the behavior of the checkpath helper to address
|
||||||
CVE-2018-21269. on Linux systems, We require non-terminal symbolic links
|
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 xystems, we do
|
to be owned by root. Since we can't do this on non-linux systems, we do
|
||||||
not dereference non-terminal symbolic links by default. If you need them
|
not dereference non-terminal symbolic links by default. If you need them
|
||||||
dereferenced, you should add the "-s" switch to the appropriate
|
dereferenced, you should add the "-s" switch to the appropriate
|
||||||
checkpath calls.
|
checkpath calls.
|
||||||
|
|||||||
38
README.md
38
README.md
@@ -4,7 +4,16 @@ OpenRC README
|
|||||||
OpenRC is a dependency-based init system that works with the
|
OpenRC is a dependency-based init system that works with the
|
||||||
system-provided init program, normally `/sbin/init`.
|
system-provided init program, normally `/sbin/init`.
|
||||||
|
|
||||||
## Installation
|
## building and installing
|
||||||
|
|
||||||
|
OpenRC uses the [meson](http://mesonbuild.com) build system, so use the
|
||||||
|
usual methods for this build system to build and install.
|
||||||
|
|
||||||
|
The old build system is still available for the 0.44.x branch, but it is
|
||||||
|
considered deprecated and will be removed. The previous documentation is
|
||||||
|
below.
|
||||||
|
|
||||||
|
## Installation (historical)
|
||||||
|
|
||||||
OpenRC requires GNU make.
|
OpenRC requires GNU make.
|
||||||
|
|
||||||
@@ -13,7 +22,7 @@ executed using this command:
|
|||||||
|
|
||||||
`make install`
|
`make install`
|
||||||
|
|
||||||
## Configuration
|
## Configuration (historical)
|
||||||
|
|
||||||
You may wish to configure the installation by passing one or more of the
|
You may wish to configure the installation by passing one or more of the
|
||||||
below arguments to the make command
|
below arguments to the make command
|
||||||
@@ -44,9 +53,11 @@ SH=/bin/sh
|
|||||||
|
|
||||||
We don't support building a static OpenRC with PAM.
|
We don't support building a static OpenRC with PAM.
|
||||||
|
|
||||||
You may need to use `PROGLDFLAGS=-Wl,-Bstatic` on glibc instead of just `-static`.
|
You may need to use `PROGLDFLAGS=-Wl,-Bstatic` on glibc instead of just `-static`
|
||||||
|
(This is now handled by the meson build system).
|
||||||
|
|
||||||
If you are building OpenRC for a Gentoo Prefix installation, add `MKPREFIX=yes`.
|
If you are building OpenRC for a Gentoo Prefix installation, add `MKPREFIX=yes`
|
||||||
|
(this is not supported in the meson build currently, but patches are welcome).
|
||||||
|
|
||||||
`PKG_PREFIX` should be set to where packages install to by default.
|
`PKG_PREFIX` should be set to where packages install to by default.
|
||||||
|
|
||||||
@@ -76,18 +87,21 @@ 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,
|
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.
|
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
|
## Reporting Bugs
|
||||||
|
|
||||||
Please report issues on our github bug tracker [1].
|
Please report bugs on our [bug tracker](http://github.com/OpenRC/openrc/issues).
|
||||||
|
|
||||||
Better yet, if you can contribute code, please feel free to submit pull
|
If you can contribute code , please feel free to do so by opening
|
||||||
requests [2].
|
[pull requests](https://github.com/OpenRC/openrc/pulls).
|
||||||
|
|
||||||
## IRC Channel
|
## IRC Channel
|
||||||
|
|
||||||
We have an official irc channel, #openrc on freenode, feel free to join
|
We have an official irc channel, #openrc on the libera network.
|
||||||
us there.
|
Please connect your irc client to irc.libera.chat and join #openrc on
|
||||||
|
that network.
|
||||||
|
|
||||||
[1] https://github.com/openrc/openrc/issues
|
|
||||||
|
|
||||||
[2] https://github.com/openrc/openrc/pulls
|
|
||||||
|
|||||||
10
bash-completion/meson.build
Normal file
10
bash-completion/meson.build
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
bash_completions = [
|
||||||
|
'openrc',
|
||||||
|
'openrc-service-script',
|
||||||
|
'rc-service',
|
||||||
|
'rc-status',
|
||||||
|
'rc-update',
|
||||||
|
]
|
||||||
|
|
||||||
|
install_data(bash_completions,
|
||||||
|
install_dir : get_option('datadir') / 'bash-completion/completions')
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
# Set to the hostname of this machine
|
# Hostname fallback if /etc/hostname does not exist
|
||||||
hostname="localhost"
|
hostname="localhost"
|
||||||
|
|||||||
59
conf.d/meson.build
Normal file
59
conf.d/meson.build
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
conf_d_dir = get_option('sysconfdir') / 'conf.d'
|
||||||
|
|
||||||
|
conf_common = [
|
||||||
|
'bootmisc',
|
||||||
|
'fsck',
|
||||||
|
'hostname',
|
||||||
|
'localmount',
|
||||||
|
'netmount',
|
||||||
|
'swap',
|
||||||
|
'urandom',
|
||||||
|
]
|
||||||
|
|
||||||
|
conf_net = [
|
||||||
|
'network',
|
||||||
|
'staticroute',
|
||||||
|
]
|
||||||
|
|
||||||
|
conf_FreeBSD = [
|
||||||
|
'ipfw',
|
||||||
|
'modules',
|
||||||
|
'moused',
|
||||||
|
'powerd',
|
||||||
|
'rarpd',
|
||||||
|
'savecore',
|
||||||
|
'syscons',
|
||||||
|
]
|
||||||
|
|
||||||
|
conf_Linux = [
|
||||||
|
'agetty',
|
||||||
|
'consolefont',
|
||||||
|
'devfs',
|
||||||
|
'dmesg',
|
||||||
|
'hwclock',
|
||||||
|
'keymaps',
|
||||||
|
'killprocs',
|
||||||
|
'modules',
|
||||||
|
'mtab',
|
||||||
|
'net-online',
|
||||||
|
]
|
||||||
|
|
||||||
|
conf_NetBSD = [
|
||||||
|
'moused',
|
||||||
|
'rarpd',
|
||||||
|
'savecore',
|
||||||
|
]
|
||||||
|
|
||||||
|
conf_data = conf_common
|
||||||
|
if get_option('newnet')
|
||||||
|
conf_data = conf_data + conf_net
|
||||||
|
endif
|
||||||
|
if os == 'FreeBSD'
|
||||||
|
conf_data = conf_data + conf_FreeBSD
|
||||||
|
elif os == 'Linux'
|
||||||
|
conf_data = conf_data + conf_Linux
|
||||||
|
elif os == 'NetBSD'
|
||||||
|
conf_data = conf_data + conf_NetBSD
|
||||||
|
endif
|
||||||
|
|
||||||
|
install_data(conf_data, install_dir : conf_d_dir)
|
||||||
44
etc/meson.build
Normal file
44
etc/meson.build
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
etc_conf_data = configuration_data()
|
||||||
|
if os == 'FreeBSD'
|
||||||
|
etc_conf_data.set('TERM', 'cons25')
|
||||||
|
elif os == 'Linux'
|
||||||
|
etc_conf_data.set('TERM', 'wsvt25')
|
||||||
|
endif
|
||||||
|
|
||||||
|
etc_conf_common = [
|
||||||
|
'rc.conf',
|
||||||
|
]
|
||||||
|
|
||||||
|
etc_bin_FreeBSD = [
|
||||||
|
'rc.devd',
|
||||||
|
]
|
||||||
|
|
||||||
|
etc_conf_FreeBSD = [
|
||||||
|
'devd.conf',
|
||||||
|
]
|
||||||
|
|
||||||
|
etc_bin_NetBSD = [
|
||||||
|
'rc.in',
|
||||||
|
'rc.shutdown.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
install_data(etc_conf_common,
|
||||||
|
install_dir : get_option('sysconfdir'))
|
||||||
|
|
||||||
|
if os == 'FreeBSD'
|
||||||
|
install_data(etc_bin_FreeBSD,
|
||||||
|
install_dir : get_option('sysconfdir'),
|
||||||
|
install_mode: 'rwxr-xr-x')
|
||||||
|
install_data(etc_conf_FreeBSD,
|
||||||
|
install_dir : get_option('sysconfdir'))
|
||||||
|
endif
|
||||||
|
|
||||||
|
if os == 'FreeBSD' or os == 'NetBSD'
|
||||||
|
foreach file : etc_bin_NetBSD
|
||||||
|
configure_file(input : file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : etc_conf_data,
|
||||||
|
install_dir: get_option('sysconfdir'),
|
||||||
|
install_mode: 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
|
endif
|
||||||
@@ -113,8 +113,10 @@ migrate_to_run()
|
|||||||
rm $src
|
rm $src
|
||||||
elif [ ! -L $src -a -d $src ]; then
|
elif [ ! -L $src -a -d $src ]; then
|
||||||
ebegin "Migrating $src to $dst"
|
ebegin "Migrating $src to $dst"
|
||||||
cp -a $src/* $dst/
|
if ! rmdir $src 2>/dev/null; then
|
||||||
rm -rf $src
|
cp -a $src/* $dst/
|
||||||
|
rm -rf $src
|
||||||
|
fi
|
||||||
eend $?
|
eend $?
|
||||||
fi
|
fi
|
||||||
# If $src doesn't exist at all, just run this
|
# If $src doesn't exist at all, just run this
|
||||||
|
|||||||
@@ -13,9 +13,9 @@ description="Mounts disks and swap according to /etc/fstab."
|
|||||||
|
|
||||||
depend()
|
depend()
|
||||||
{
|
{
|
||||||
need fsck
|
need fsck root
|
||||||
use lvm modules root
|
use lvm modules
|
||||||
after clock lvm modules root
|
after clock lvm modules
|
||||||
keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver
|
keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
100
init.d/meson.build
Normal file
100
init.d/meson.build
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
init_d_dir = get_option('sysconfdir') / 'init.d'
|
||||||
|
|
||||||
|
init_common = [
|
||||||
|
'bootmisc.in',
|
||||||
|
'fsck.in',
|
||||||
|
'hostname.in',
|
||||||
|
'local.in',
|
||||||
|
'localmount.in',
|
||||||
|
'loopback.in',
|
||||||
|
'netmount.in',
|
||||||
|
'osclock.in',
|
||||||
|
'root.in',
|
||||||
|
'savecache.in',
|
||||||
|
'swap.in',
|
||||||
|
'swclock.in',
|
||||||
|
'sysctl.in',
|
||||||
|
'runsvdir.in',
|
||||||
|
'urandom.in',
|
||||||
|
's6-svscan.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
if get_option('newnet')
|
||||||
|
init_common = init_common + [
|
||||||
|
'network.in',
|
||||||
|
'staticroute.in',
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
|
init_Linux = [
|
||||||
|
'agetty.in',
|
||||||
|
'binfmt.in',
|
||||||
|
'cgroups.in',
|
||||||
|
'consolefont.in',
|
||||||
|
'devfs.in',
|
||||||
|
'dmesg.in',
|
||||||
|
'hwclock.in',
|
||||||
|
'keymaps.in',
|
||||||
|
'killprocs.in',
|
||||||
|
'modules.in',
|
||||||
|
'mount-ro.in',
|
||||||
|
'mtab.in',
|
||||||
|
'numlock.in',
|
||||||
|
'procfs.in',
|
||||||
|
'net-online.in',
|
||||||
|
'save-keymaps.in',
|
||||||
|
'save-termencoding.in',
|
||||||
|
'sysfs.in',
|
||||||
|
'termencoding.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
init_BSD = [
|
||||||
|
'hostid.in',
|
||||||
|
'moused.in',
|
||||||
|
'newsyslog.in',
|
||||||
|
'pf.in',
|
||||||
|
'rarpd.in',
|
||||||
|
'rc-enabled.in',
|
||||||
|
'rpcbind.in',
|
||||||
|
'savecore.in',
|
||||||
|
'syslogd.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
init_FreeBSD = [
|
||||||
|
'adjkerntz.in',
|
||||||
|
'devd .in',
|
||||||
|
'dumpon.in',
|
||||||
|
'encswap.in',
|
||||||
|
'ipfw.in',
|
||||||
|
'modules.in',
|
||||||
|
'mixer.in',
|
||||||
|
'nscd.in',
|
||||||
|
'powerd.in',
|
||||||
|
'syscons.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
init_NetBSD = [
|
||||||
|
'devdb.in',
|
||||||
|
'swap-blk.in',
|
||||||
|
'ttys.in',
|
||||||
|
'wscons.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
init_data = init_common
|
||||||
|
if os == 'Dragonfly'
|
||||||
|
init_data = init_data + init_BSD
|
||||||
|
elif os == 'FreeBSD' or os == 'Gnu-kFreeBSD'
|
||||||
|
init_data = init_data + init_BSD + init_FreeBSD
|
||||||
|
elif os == 'Linux'
|
||||||
|
init_data = init_data + init_Linux
|
||||||
|
elif os == 'NetBSD'
|
||||||
|
init_data = init_data + init_BSD + init_NetBSD
|
||||||
|
endif
|
||||||
|
|
||||||
|
foreach init_d_file : init_data
|
||||||
|
configure_file(input : init_d_file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : init_d_conf_data,
|
||||||
|
install_dir: init_d_dir,
|
||||||
|
install_mode: 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
@@ -41,18 +41,18 @@ find_modfiles()
|
|||||||
|
|
||||||
load_modules()
|
load_modules()
|
||||||
{
|
{
|
||||||
local file m modules rc x
|
local file m _modules rc x
|
||||||
file=$1
|
file=$1
|
||||||
[ -z "$file" ] && return 0
|
[ -z "$file" ] && return 0
|
||||||
while read m x; do
|
while read m x; do
|
||||||
case $m in
|
case $m in
|
||||||
\;*) continue ;;
|
\;*) continue ;;
|
||||||
\#*) continue ;;
|
\#*) continue ;;
|
||||||
*) modules="$modules $m"
|
*) _modules="$_modules $m"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done < $file
|
done < $file
|
||||||
for x in $modules; do
|
for x in $_modules; do
|
||||||
ebegin "Loading module $x"
|
ebegin "Loading module $x"
|
||||||
case "$RC_UNAME" in
|
case "$RC_UNAME" in
|
||||||
FreeBSD) kldload "$x"; rc=$? ;;
|
FreeBSD) kldload "$x"; rc=$? ;;
|
||||||
|
|||||||
@@ -21,9 +21,13 @@ depend()
|
|||||||
|
|
||||||
start_pre()
|
start_pre()
|
||||||
{
|
{
|
||||||
einfo "Creating s6 scan directory"
|
if [ ! -e "$command" ]; then
|
||||||
checkpath -d -m 0755 "$RC_SVCDIR"/s6-scan
|
eerror "$command is missing (please install s6)"
|
||||||
return $?
|
else
|
||||||
|
einfo "Creating s6 scan directory"
|
||||||
|
checkpath -d -m 0755 "$RC_SVCDIR"/s6-scan
|
||||||
|
fi
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
stop_post()
|
stop_post()
|
||||||
|
|||||||
7
local.d/meson.build
Normal file
7
local.d/meson.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
local_d_dir = get_option('sysconfdir') / 'local.d'
|
||||||
|
|
||||||
|
local_data = [
|
||||||
|
'README'
|
||||||
|
]
|
||||||
|
|
||||||
|
install_data(local_data, install_dir : local_d_dir)
|
||||||
34
man/meson.build
Normal file
34
man/meson.build
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
man3 = [
|
||||||
|
'einfo.3',
|
||||||
|
'rc_config.3',
|
||||||
|
'rc_deptree.3',
|
||||||
|
'rc_find_pids.3',
|
||||||
|
'rc_plugin_hook.3',
|
||||||
|
'rc_runlevel.3',
|
||||||
|
'rc_service.3',
|
||||||
|
'rc_stringlist.3',
|
||||||
|
]
|
||||||
|
|
||||||
|
man8 = [
|
||||||
|
'openrc.8',
|
||||||
|
'openrc-run.8',
|
||||||
|
'rc-service.8',
|
||||||
|
'rc-status.8',
|
||||||
|
'rc-update.8',
|
||||||
|
'start-stop-daemon.8',
|
||||||
|
'supervise-daemon.8',
|
||||||
|
]
|
||||||
|
|
||||||
|
if os == 'Linux'
|
||||||
|
man8 = man8 + [
|
||||||
|
'rc-sstat.8',
|
||||||
|
'openrc-init.8',
|
||||||
|
'openrc-shutdown.8',
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
|
install_data(man3,
|
||||||
|
install_dir : get_option('mandir') / 'man3')
|
||||||
|
install_data(man8,
|
||||||
|
install_dir : get_option('mandir') / 'man8')
|
||||||
|
meson.add_install_script('meson_man_links.sh', get_option('mandir'), man3 + man8)
|
||||||
20
man/meson_man_links.sh
Executable file
20
man/meson_man_links.sh
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
get_links() {
|
||||||
|
sed -e 's/ ,//g' \
|
||||||
|
-e '/^\.Sh NAME$/,/\.Sh/ s/\.Nm //p' \
|
||||||
|
-n ${MESON_SOURCE_ROOT}/man/${1}
|
||||||
|
}
|
||||||
|
|
||||||
|
MANDIR="$1"
|
||||||
|
shift
|
||||||
|
for man in $@; do
|
||||||
|
prefix=${man%%.*}
|
||||||
|
suffix=${man#*.}
|
||||||
|
links=$(get_links ${man})
|
||||||
|
for link in ${links}; do
|
||||||
|
if [ "${link}" != "${prefix}" ]; then
|
||||||
|
ln -sf ${man} ${MESON_INSTALL_DESTDIR_PREFIX}/${MANDIR}/man${suffix}/${link}.${suffix}
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
@@ -104,8 +104,6 @@ supervisor=s6.
|
|||||||
or set
|
or set
|
||||||
supervisor=supervise-daemon
|
supervisor=supervise-daemon
|
||||||
to use supervise-daemon.
|
to use supervise-daemon.
|
||||||
Note that supervise-daemon is still in early development, so it is
|
|
||||||
considered experimental.
|
|
||||||
.It Ar s6_service_path
|
.It Ar s6_service_path
|
||||||
The path to the s6 service directory if you are monitoring this service
|
The path to the s6 service directory if you are monitoring this service
|
||||||
with S6. The default is /var/svc.d/${RC_SVCNAME}.
|
with S6. The default is /var/svc.d/${RC_SVCNAME}.
|
||||||
|
|||||||
@@ -37,6 +37,8 @@ servicename
|
|||||||
.Ar count
|
.Ar count
|
||||||
.Fl N , -nicelevel
|
.Fl N , -nicelevel
|
||||||
.Ar level
|
.Ar level
|
||||||
|
.Fl p , -pidfile
|
||||||
|
.Ar supervisorpidfile
|
||||||
.Fl P , -respawn-period
|
.Fl P , -respawn-period
|
||||||
.Ar seconds
|
.Ar seconds
|
||||||
.Fl R , -retry
|
.Fl R , -retry
|
||||||
@@ -122,6 +124,9 @@ If respawn-period is also set, more than respawn-max crashes must occur
|
|||||||
during respawn-period seconds to cause
|
during respawn-period seconds to cause
|
||||||
.Nm
|
.Nm
|
||||||
to give up and exit.
|
to give up and exit.
|
||||||
|
.It Fl p , -pidfile Ar supervisorpidfile
|
||||||
|
Sets a path for the supervisor's pid file. Note that this is not the pid
|
||||||
|
file of the process that is being supervised.
|
||||||
.It Fl N , -nicelevel Ar level
|
.It Fl N , -nicelevel Ar level
|
||||||
Modifies the scheduling priority of the daemon.
|
Modifies the scheduling priority of the daemon.
|
||||||
.It Fl P , -respawn-period Ar seconds
|
.It Fl P , -respawn-period Ar seconds
|
||||||
@@ -151,6 +156,10 @@ The same thing as
|
|||||||
but with the standard error output.
|
but with the standard error output.
|
||||||
.El
|
.El
|
||||||
.Sh ENVIRONMENT
|
.Sh ENVIRONMENT
|
||||||
|
.Va SSD_IONICELEVEL
|
||||||
|
can also set the IO scheduling priority of the daemon, but the command line
|
||||||
|
option takes precedence.
|
||||||
|
.Pp
|
||||||
.Va SSD_NICELEVEL
|
.Va SSD_NICELEVEL
|
||||||
can also set the scheduling priority of the daemon, but the command line
|
can also set the scheduling priority of the daemon, but the command line
|
||||||
option takes precedence.
|
option takes precedence.
|
||||||
|
|||||||
212
meson.build
Normal file
212
meson.build
Normal file
@@ -0,0 +1,212 @@
|
|||||||
|
project('OpenRC', 'c',
|
||||||
|
version : '0.44.8',
|
||||||
|
license: 'BSD-2',
|
||||||
|
default_options : [
|
||||||
|
'c_std=c99',
|
||||||
|
'prefix=/usr',
|
||||||
|
'warning_level=3',
|
||||||
|
],
|
||||||
|
meson_version : '>=0.49.0')
|
||||||
|
|
||||||
|
cc = meson.get_compiler('c')
|
||||||
|
|
||||||
|
audit_dep = dependency('audit', required : get_option('audit'))
|
||||||
|
if audit_dep.found()
|
||||||
|
cc_audit_flags = '-DHAVE_AUDIT'
|
||||||
|
else
|
||||||
|
cc_audit_flags = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
if get_option('branding') != ''
|
||||||
|
cc_branding_flags = '-DBRANDING=' + get_option('branding')
|
||||||
|
else
|
||||||
|
cc_branding_flags = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
libname = get_option('libdir').split('/')[-1]
|
||||||
|
|
||||||
|
option_local_prefix = get_option('local_prefix')
|
||||||
|
if option_local_prefix == ''
|
||||||
|
local_prefix = get_option('prefix') / 'usr' / 'local'
|
||||||
|
else
|
||||||
|
local_prefix = option_local_prefix
|
||||||
|
endif
|
||||||
|
|
||||||
|
option_os = get_option('os')
|
||||||
|
if option_os == ''
|
||||||
|
uname = find_program('uname')
|
||||||
|
r = run_command(uname, '-s')
|
||||||
|
os = r.stdout().strip()
|
||||||
|
os = '-'.join(os.split('/'))
|
||||||
|
else
|
||||||
|
os = option_os
|
||||||
|
endif
|
||||||
|
|
||||||
|
pam_dep = dependency('pam', required: false)
|
||||||
|
if not pam_dep.found()
|
||||||
|
pam_dep = cc.find_library('pam', required: false)
|
||||||
|
endif
|
||||||
|
if pam_dep.found() and get_option('pam')
|
||||||
|
cc_pam_flags = '-DHAVE_PAM'
|
||||||
|
else
|
||||||
|
cc_pam_flags = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
if not pam_dep.found() and get_option('pam')
|
||||||
|
error('Pam was requested but could not be located')
|
||||||
|
endif
|
||||||
|
|
||||||
|
option_pkg_prefix = get_option('pkg_prefix')
|
||||||
|
if option_pkg_prefix == ''
|
||||||
|
if os == 'Dragonfly' or os == 'FreeBSD'
|
||||||
|
pkg_prefix = '/usr/local'
|
||||||
|
elif os == 'GNU' or os == 'GNU-kFreeBSD' or os == 'Linux'
|
||||||
|
pkg_prefix = '/usr'
|
||||||
|
elif os == 'NetBSD'
|
||||||
|
pkg_prefix = '/usr/pkg'
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
pkg_prefix = option_pkg_prefix
|
||||||
|
endif
|
||||||
|
|
||||||
|
if get_option('split-usr') == 'auto'
|
||||||
|
split_usr = run_command('test', '-L', '/bin').returncode() != 0
|
||||||
|
else
|
||||||
|
split_usr = get_option('split-usr') == 'true'
|
||||||
|
endif
|
||||||
|
|
||||||
|
rootprefix = get_option('rootprefix')
|
||||||
|
rootprefix_default = '/'
|
||||||
|
if rootprefix == ''
|
||||||
|
rootprefix = rootprefix_default
|
||||||
|
endif
|
||||||
|
|
||||||
|
bindir = rootprefix / get_option('bindir')
|
||||||
|
libdir = rootprefix / get_option('libdir')
|
||||||
|
libexecdir = get_option('libexecdir')
|
||||||
|
if os == 'Linux' and libexecdir == 'libexec'
|
||||||
|
libexecdir = 'lib'
|
||||||
|
endif
|
||||||
|
libexecdir = rootprefix / libexecdir
|
||||||
|
rc_libexecdir = libexecdir / 'rc'
|
||||||
|
rc_bindir = rc_libexecdir / 'bin'
|
||||||
|
rc_sbindir = rc_libexecdir / 'sbin'
|
||||||
|
sbindir = rootprefix / get_option('sbindir')
|
||||||
|
|
||||||
|
crypt_dep = []
|
||||||
|
|
||||||
|
selinux_dep = dependency('libselinux', required : get_option('selinux'))
|
||||||
|
pam_misc_dep = []
|
||||||
|
if selinux_dep.found()
|
||||||
|
cc_selinux_flags = '-DHAVE_SELINUX'
|
||||||
|
if pam_dep.found() and get_option('pam')
|
||||||
|
pam_misc_dep = dependency('pam_misc', required: false)
|
||||||
|
if not pam_misc_dep.found()
|
||||||
|
pam_misc_dep = cc.find_library('pam_misc', required: false)
|
||||||
|
endif
|
||||||
|
if not pam_misc_dep.found() and get_option('pam')
|
||||||
|
error('Pam was requested but could not be located')
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
crypt_dep = dependency('libcrypt', required : false)
|
||||||
|
if not crypt_dep.found()
|
||||||
|
crypt_dep = cc.find_library('crypt', required : true)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
cc_selinux_flags = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
termcap = get_option('termcap')
|
||||||
|
if termcap != ''
|
||||||
|
termcap_dep = dependency(termcap)
|
||||||
|
termcap_flags = '-DHAVE_TERMCAP'
|
||||||
|
else
|
||||||
|
termcap_dep = []
|
||||||
|
termcap_flags = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
if get_option('buildtype').startswith('debug')
|
||||||
|
cc_debug_flags = ['-DRC_DEBUG']
|
||||||
|
else
|
||||||
|
cc_debug_flags = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
if os == 'Linux' or os == 'GNU-kFreeBSD'
|
||||||
|
cc_os_flags = ['-D_DEFAULT_SOURCE']
|
||||||
|
elif os == 'FreeBSD'
|
||||||
|
cc_os_flags = ['-D_BSD_SOURCE']
|
||||||
|
elif os == 'GNU'
|
||||||
|
cc_os_flags = ['-D_DEFAULT_SOURCE', '-DMAXPATHLEN=4096', '-DPATH_MAX=4096']
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Try and use some good cc flags if we're building from git. We don't use
|
||||||
|
# -pedantic as it will warn about our perfectly valid use of %m in our logger.
|
||||||
|
# We should be using -Wredundant-decls, but our library hidden proto stuff gives
|
||||||
|
# loads of warnings. I don't fully understand it (the hidden proto, not the
|
||||||
|
# warning) so we just silence the warning.
|
||||||
|
cc_warning_flags_test = [
|
||||||
|
'-Wcast-align',
|
||||||
|
'-Wcast-qual',
|
||||||
|
'-Wdeclaration-after-statement',
|
||||||
|
'-Wformat=2',
|
||||||
|
'-Winline',
|
||||||
|
'-Wmissing-declarations',
|
||||||
|
'-Wmissing-format-attribute',
|
||||||
|
'-Wmissing-noreturn',
|
||||||
|
'-Wmissing-prototypes',
|
||||||
|
'-Wnested-externs',
|
||||||
|
'-Wpointer-arith',
|
||||||
|
'-Wsequence-point',
|
||||||
|
'-Wshadow',
|
||||||
|
'-Wwrite-strings',
|
||||||
|
'-Werror=implicit-function-declaration',
|
||||||
|
]
|
||||||
|
cc_warning_flags = cc.get_supported_arguments(cc_warning_flags_test)
|
||||||
|
cc_flags = [cc_debug_flags, cc_os_flags, cc_warning_flags]
|
||||||
|
add_project_arguments(cc_flags, language : 'c')
|
||||||
|
|
||||||
|
incdir = include_directories('src/includes')
|
||||||
|
einfo_incdir = include_directories('src/libeinfo')
|
||||||
|
rc_incdir = include_directories('src/librc')
|
||||||
|
|
||||||
|
init_d_conf_data = configuration_data()
|
||||||
|
init_d_conf_data.set('SBINDIR', sbindir)
|
||||||
|
init_d_conf_data.set('PKG_PREFIX', pkg_prefix)
|
||||||
|
init_d_conf_data.set('SYSCONFDIR', get_option('sysconfdir'))
|
||||||
|
|
||||||
|
dl_dep = cc.find_library('dl', required: false)
|
||||||
|
util_dep = cc.find_library('util', required: false)
|
||||||
|
|
||||||
|
if get_option('bash-completions')
|
||||||
|
subdir('bash-completion')
|
||||||
|
endif
|
||||||
|
subdir('conf.d')
|
||||||
|
subdir('etc')
|
||||||
|
subdir('init.d')
|
||||||
|
subdir('local.d')
|
||||||
|
subdir('man')
|
||||||
|
if get_option('pam')
|
||||||
|
subdir('pam')
|
||||||
|
endif
|
||||||
|
if get_option('pkgconfig')
|
||||||
|
subdir('pkgconfig')
|
||||||
|
endif
|
||||||
|
subdir('scripts')
|
||||||
|
subdir('sh')
|
||||||
|
subdir('src')
|
||||||
|
subdir('support')
|
||||||
|
subdir('sysctl.d')
|
||||||
|
if get_option('zsh-completions')
|
||||||
|
subdir('zsh-completion')
|
||||||
|
endif
|
||||||
|
|
||||||
|
meson.add_install_script('tools/meson_runlevels.sh',
|
||||||
|
os,
|
||||||
|
get_option('newnet') ? 'yes' : 'no',
|
||||||
|
rc_libexecdir,
|
||||||
|
get_option('sysconfdir'),
|
||||||
|
get_option('sysvinit') ? 'yes' : 'no')
|
||||||
|
meson.add_install_script('tools/meson_final.sh',
|
||||||
|
rc_libexecdir,
|
||||||
|
os)
|
||||||
37
meson_options.txt
Normal file
37
meson_options.txt
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
option('audit', type : 'feature', value : 'auto',
|
||||||
|
description : 'enable libaudit support')
|
||||||
|
option('bash-completions', type : 'boolean',
|
||||||
|
description : 'install bash completions')
|
||||||
|
option('branding', type : 'string',
|
||||||
|
description : 'Add branding to OpenRC')
|
||||||
|
option('local_prefix', type : 'string', value : '/usr/local',
|
||||||
|
description : 'default location of user maintained packages')
|
||||||
|
option('newnet', type : 'boolean',
|
||||||
|
description : 'build and install our networking scripts')
|
||||||
|
option('os', type : 'combo',
|
||||||
|
choices :
|
||||||
|
[ '', 'DragonFly', 'FreeBSD', 'GNU', 'GNU-kFreeBSD', 'Linux', 'NetBSD' ],
|
||||||
|
description : 'Operating System (autodetected if not specified)')
|
||||||
|
option('pam', type : 'boolean',
|
||||||
|
description : 'enable PAM support')
|
||||||
|
option('pkg_prefix', type : 'string',
|
||||||
|
description : 'default location where packages are installed')
|
||||||
|
option('pkgconfig', type : 'boolean',
|
||||||
|
description : 'build PKGConfig files')
|
||||||
|
option('rootprefix', type : 'string',
|
||||||
|
description : 'override the root prefix')
|
||||||
|
option('selinux', type : 'feature', value : 'auto',
|
||||||
|
description : 'enable SELinux support')
|
||||||
|
option('shell', type : 'string', value : '/bin/sh',
|
||||||
|
description : 'Default posix compatible shell')
|
||||||
|
option('split-usr', type : 'combo',
|
||||||
|
choices : ['auto', 'true', 'false'],
|
||||||
|
description : '''/bin, /sbin aren't symlinks into /usr''')
|
||||||
|
option('sysvinit', type : 'boolean', value : false,
|
||||||
|
description : 'enable SysVinit compatibility (linux only)')
|
||||||
|
option('termcap', type : 'combo',
|
||||||
|
choices :
|
||||||
|
[ '', 'ncurses', 'termcap' ],
|
||||||
|
description : 'the termcap library to use')
|
||||||
|
option('zsh-completions', type : 'boolean',
|
||||||
|
description : 'install zsh completions')
|
||||||
9
pam/meson.build
Normal file
9
pam/meson.build
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
pam_dir = get_option('sysconfdir') / 'pam.d'
|
||||||
|
|
||||||
|
pam_files = [
|
||||||
|
'start-stop-daemon',
|
||||||
|
'supervise-daemon',
|
||||||
|
]
|
||||||
|
|
||||||
|
install_data(pam_files,
|
||||||
|
install_dir : pam_dir)
|
||||||
6
pam/start-stop-daemon
Normal file
6
pam/start-stop-daemon
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
|
||||||
|
auth required pam_permit.so
|
||||||
|
account required pam_permit.so
|
||||||
|
password required pam_deny.so
|
||||||
|
session optional pam_limits.so
|
||||||
6
pam/supervise-daemon
Normal file
6
pam/supervise-daemon
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
|
||||||
|
auth required pam_permit.so
|
||||||
|
account required pam_permit.so
|
||||||
|
password required pam_deny.so
|
||||||
|
session optional pam_limits.so
|
||||||
22
pkgconfig/meson.build
Normal file
22
pkgconfig/meson.build
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
pkgconfig_dir = get_option('libdir') / 'pkgconfig'
|
||||||
|
|
||||||
|
pkgconfig_conf_data = configuration_data()
|
||||||
|
if rootprefix != '/'
|
||||||
|
pkgconfig_conf_data.set('PREFIX', rootprefix)
|
||||||
|
else
|
||||||
|
pkgconfig_conf_data.set('PREFIX', '')
|
||||||
|
endif
|
||||||
|
pkgconfig_conf_data.set('LIB', get_option('libdir'))
|
||||||
|
pkgconfig_conf_data.set('VERSION', meson.project_version())
|
||||||
|
|
||||||
|
pkgconfig_files = [
|
||||||
|
'einfo.pc.in',
|
||||||
|
'openrc.pc.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
foreach file : pkgconfig_files
|
||||||
|
configure_file(input : file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : pkgconfig_conf_data,
|
||||||
|
install_dir : pkgconfig_dir)
|
||||||
|
endforeach
|
||||||
45
scripts/meson.build
Normal file
45
scripts/meson.build
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
script_conf_data = configuration_data()
|
||||||
|
script_conf_data.set('SBINDIR', sbindir)
|
||||||
|
|
||||||
|
script_dir = rc_libexecdir / 'bin'
|
||||||
|
|
||||||
|
scripts_internal = [
|
||||||
|
'on_ac_power',
|
||||||
|
]
|
||||||
|
|
||||||
|
scripts_Linux = [
|
||||||
|
'rc-sstat.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
scripts_sysvinit = [
|
||||||
|
'halt.in',
|
||||||
|
'poweroff.in',
|
||||||
|
'shutdown.in',
|
||||||
|
'reboot.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
install_data(scripts_internal,
|
||||||
|
install_dir : script_dir,
|
||||||
|
install_mode: 'rwxr-xr-x')
|
||||||
|
|
||||||
|
if os == 'Linux'
|
||||||
|
foreach file : scripts_Linux
|
||||||
|
configure_file(input : file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : script_conf_data,
|
||||||
|
install_dir: script_dir,
|
||||||
|
install_mode: 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
|
if get_option('sysvinit')
|
||||||
|
foreach file : scripts_sysvinit
|
||||||
|
configure_file(input : file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : script_conf_data,
|
||||||
|
install_dir: script_dir,
|
||||||
|
install_mode: 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
meson.add_install_script('meson_script_links.sh', rc_libexecdir,
|
||||||
|
sbindir)
|
||||||
19
scripts/meson_script_links.sh
Executable file
19
scripts/meson_script_links.sh
Executable file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
rc_libexecdir="$1"
|
||||||
|
sbindir="$2"
|
||||||
|
binaries=" halt poweroff rc-sstat reboot shutdown"
|
||||||
|
for f in $binaries; do
|
||||||
|
if [ -x "${DESTDIR}${rc_libexecdir}/bin/${f}" ]; then
|
||||||
|
ln -snf "${rc_libexecdir}/bin/${f}" \
|
||||||
|
"${DESTDIR}${sbindir}/${f}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
# sysvinit is active when halt exits
|
||||||
|
if [ -x "${DESTDIR}${rc_libexecdir}/bin/halt" ]; then
|
||||||
|
ln -snf "${sbindir}/openrc-init" \
|
||||||
|
"${DESTDIR}${sbindir}/init"
|
||||||
|
fi
|
||||||
@@ -18,9 +18,10 @@ if [ -f /proc/acpi/ac_adapter/*/state ]; then
|
|||||||
"state:"*"off-line") exit 128;;
|
"state:"*"off-line") exit 128;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
elif [ -f /sys/class/power_supply/*/online ]; then
|
elif [ -d /sys/class/power_supply ]; then
|
||||||
cat /sys/class/power_supply/*/online | while read line; do
|
for dir in /sys/class/power_supply/*/; do
|
||||||
[ "${line}" = 0 ] && exit 128
|
[ "$(cat "${dir}/type")" != "Mains" ] && continue
|
||||||
|
[ "$(cat "${dir}/online")" = 0 ] && exit 128
|
||||||
done
|
done
|
||||||
elif [ -f /proc/pmu/info ]; then
|
elif [ -f /proc/pmu/info ]; then
|
||||||
cat /proc/pmu/info | while read line; do
|
cat /proc/pmu/info | while read line; do
|
||||||
|
|||||||
84
sh/meson.build
Normal file
84
sh/meson.build
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
sh_conf_data = configuration_data()
|
||||||
|
if rootprefix == '/'
|
||||||
|
sh_conf_data.set('PREFIX', '')
|
||||||
|
else
|
||||||
|
sh_conf_data.set('PREFIX', rootprefix)
|
||||||
|
endif
|
||||||
|
sh_conf_data.set('BINDIR', bindir)
|
||||||
|
sh_conf_data.set('LIBEXECDIR', rc_libexecdir)
|
||||||
|
sh_conf_data.set('LOCAL_PREFIX', local_prefix)
|
||||||
|
sh_conf_data.set('PKG_PREFIX', pkg_prefix)
|
||||||
|
sh_conf_data.set('SBINDIR', sbindir)
|
||||||
|
sh_conf_data.set('SHELL', get_option('shell'))
|
||||||
|
sh_conf_data.set('SYSCONFDIR', get_option('sysconfdir'))
|
||||||
|
|
||||||
|
sh_dir = rc_libexecdir / 'sh'
|
||||||
|
|
||||||
|
sh = [
|
||||||
|
'rc-functions.sh',
|
||||||
|
'rc-mount.sh',
|
||||||
|
'runit.sh',
|
||||||
|
's6.sh',
|
||||||
|
'start-stop-daemon.sh',
|
||||||
|
'supervise-daemon.sh',
|
||||||
|
]
|
||||||
|
|
||||||
|
sh_config = [
|
||||||
|
'functions.sh.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
scripts_config = [
|
||||||
|
'gendepends.sh.in',
|
||||||
|
'openrc-run.sh.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
if os == 'Linux'
|
||||||
|
sh += [
|
||||||
|
'rc-cgroup.sh',
|
||||||
|
]
|
||||||
|
scripts_config += [
|
||||||
|
'binfmt.sh.in',
|
||||||
|
'cgroup-release-agent.sh.in',
|
||||||
|
]
|
||||||
|
scripts_config_os = [
|
||||||
|
['init-early.sh.Linux.in', 'init-early.sh'],
|
||||||
|
['init.sh.Linux.in', 'init.sh'],
|
||||||
|
]
|
||||||
|
elif os == 'GNU'
|
||||||
|
scripts_config_os = [
|
||||||
|
['init.sh.GNU.in', 'init.sh'],
|
||||||
|
]
|
||||||
|
elif os == 'Gnu-KFreeBSD'
|
||||||
|
scripts_config_os = [
|
||||||
|
['init.sh.GNU-kFreeBSD.in', 'init.sh'],
|
||||||
|
]
|
||||||
|
else
|
||||||
|
scripts_config_os = [
|
||||||
|
['init.sh.BSD.in', 'init.sh'],
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
|
install_data(sh,
|
||||||
|
install_dir : sh_dir)
|
||||||
|
foreach file : sh_config
|
||||||
|
configure_file(input : file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : sh_conf_data,
|
||||||
|
install_dir : sh_dir)
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
foreach file : scripts_config
|
||||||
|
configure_file(input : file,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : sh_conf_data,
|
||||||
|
install_dir : sh_dir,
|
||||||
|
install_mode : 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
foreach file : scripts_config_os
|
||||||
|
configure_file(input : file.get(0),
|
||||||
|
output : file.get(1),
|
||||||
|
configuration : sh_conf_data,
|
||||||
|
install_dir : sh_dir,
|
||||||
|
install_mode : 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
@@ -209,7 +209,7 @@ cgroup2_set_limits()
|
|||||||
cgroup_cleanup()
|
cgroup_cleanup()
|
||||||
{
|
{
|
||||||
cgroup_running || return 0
|
cgroup_running || return 0
|
||||||
ebegin "starting cgroups cleanup"
|
ebegin "Starting cgroups cleanup"
|
||||||
local loops=0
|
local loops=0
|
||||||
cgroup_get_pids
|
cgroup_get_pids
|
||||||
if [ -n "${cgroup_pids}" ]; then
|
if [ -n "${cgroup_pids}" ]; then
|
||||||
@@ -219,7 +219,7 @@ cgroup_cleanup()
|
|||||||
kill -s HUP ${cgroup_pids} 2> /dev/null
|
kill -s HUP ${cgroup_pids} 2> /dev/null
|
||||||
kill -s "${stopsig:-TERM}" ${cgroup_pids} 2> /dev/null
|
kill -s "${stopsig:-TERM}" ${cgroup_pids} 2> /dev/null
|
||||||
cgroup_get_pids
|
cgroup_get_pids
|
||||||
while [ -n "$(cgroup_pids)" ] &&
|
while [ -n "${cgroup_pids}" ] &&
|
||||||
[ "${loops}" -lt "${rc_timeout_stopsec:-90}" ]; do
|
[ "${loops}" -lt "${rc_timeout_stopsec:-90}" ]; do
|
||||||
loops=$((loops+1))
|
loops=$((loops+1))
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ do_unmount()
|
|||||||
retry=4 # Effectively TERM, sleep 1, TERM, sleep 1, KILL, sleep 1
|
retry=4 # Effectively TERM, sleep 1, TERM, sleep 1, KILL, sleep 1
|
||||||
while ! LC_ALL=C $cmd "$mnt" 2>/dev/null; do
|
while ! LC_ALL=C $cmd "$mnt" 2>/dev/null; do
|
||||||
if command -v fuser >/dev/null 2>&1; then
|
if command -v fuser >/dev/null 2>&1; then
|
||||||
pids="$(timeout -k 10 -s KILL "${rc_fuser_timeout:-60}" \
|
pids="$(timeout -s KILL "${rc_fuser_timeout:-60}" \
|
||||||
fuser $f_opts "$mnt" 2>/dev/null)"
|
fuser $f_opts "$mnt" 2>/dev/null)"
|
||||||
fi
|
fi
|
||||||
case " $pids " in
|
case " $pids " in
|
||||||
|
|||||||
16
sh/runit.sh
16
sh/runit.sh
@@ -20,8 +20,20 @@ runit_start()
|
|||||||
service_link="${RC_SVCDIR}/sv/${service_path##*/}"
|
service_link="${RC_SVCDIR}/sv/${service_path##*/}"
|
||||||
ebegin "Starting ${name:-$RC_SVCNAME}"
|
ebegin "Starting ${name:-$RC_SVCNAME}"
|
||||||
ln -snf "${service_path}" "${service_link}"
|
ln -snf "${service_path}" "${service_link}"
|
||||||
sv start "${service_link}" > /dev/null 2>&1
|
local i=0 retval=1
|
||||||
eend $? "Failed to start ${name:-$RC_SVCNAME}"
|
# it can take upto 5 seconds for runsv to start
|
||||||
|
while [ $i -lt 6 ] ; do
|
||||||
|
if sv start "${service_link}" > /dev/null 2>&1; then
|
||||||
|
retval=0
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 1 && i=$(expr $i + 1)
|
||||||
|
done
|
||||||
|
if [ $retval -eq 1 ]; then
|
||||||
|
# clean up the link else sv will keep on trying
|
||||||
|
rm "${service_link}"
|
||||||
|
fi
|
||||||
|
eend $retval "Failed to start ${name:-$RC_SVCNAME}"
|
||||||
}
|
}
|
||||||
|
|
||||||
runit_stop()
|
runit_stop()
|
||||||
|
|||||||
6
src/common/meson.build
Normal file
6
src/common/meson.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
version_h = vcs_tag(
|
||||||
|
input : 'version.h.in',
|
||||||
|
output : 'version.h')
|
||||||
|
version_f = vcs_tag(
|
||||||
|
input : 'version.in',
|
||||||
|
output : 'version')
|
||||||
18
src/common/version.h.in
Normal file
18
src/common/version.h.in
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2007-2015 The OpenRC Authors.
|
||||||
|
* See the Authors file at the top-level directory of this distribution and
|
||||||
|
* https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||||
|
*
|
||||||
|
* This file is part of OpenRC. It is subject to the license terms in
|
||||||
|
* the LICENSE file found in the top-level directory of this
|
||||||
|
* distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||||
|
* This file may not be copied, modified, propagated, or distributed
|
||||||
|
* except according to the terms contained in the LICENSE file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _VERSION_H_
|
||||||
|
#define _VERSION_H_
|
||||||
|
|
||||||
|
#define VERSION "@VCS_TAG@"
|
||||||
|
|
||||||
|
#endif
|
||||||
1
src/common/version.in
Normal file
1
src/common/version.in
Normal file
@@ -0,0 +1 @@
|
|||||||
|
@VCS_TAG@
|
||||||
12
src/libeinfo/meson.build
Normal file
12
src/libeinfo/meson.build
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
libeinfo_version = '1'
|
||||||
|
|
||||||
|
libeinfo = library('einfo', ['libeinfo.c'],
|
||||||
|
c_args : termcap_flags,
|
||||||
|
include_directories : incdir,
|
||||||
|
dependencies : termcap_dep,
|
||||||
|
link_depends : 'einfo.map',
|
||||||
|
version : libeinfo_version,
|
||||||
|
install : true,
|
||||||
|
install_dir : libdir)
|
||||||
|
|
||||||
|
install_headers('einfo.h')
|
||||||
@@ -15,6 +15,8 @@
|
|||||||
* except according to the terms contained in the LICENSE file.
|
* except according to the terms contained in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <signal.h>
|
||||||
|
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
#include "librc.h"
|
#include "librc.h"
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <fnmatch.h>
|
#include <fnmatch.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
#include "librc.h"
|
#include "librc.h"
|
||||||
|
|||||||
@@ -481,7 +481,8 @@ rc_runlevel_exists(const char *runlevel)
|
|||||||
char path[PATH_MAX];
|
char path[PATH_MAX];
|
||||||
struct stat buf;
|
struct stat buf;
|
||||||
|
|
||||||
if (!runlevel || strcmp(runlevel, ".") == 0 || strcmp(runlevel, "..") == 0)
|
if (!runlevel || strcmp(runlevel, "") == 0 || strcmp(runlevel, ".") == 0 ||
|
||||||
|
strcmp(runlevel, "..") == 0)
|
||||||
return false;
|
return false;
|
||||||
snprintf(path, sizeof(path), "%s/%s", RC_RUNLEVELDIR, runlevel);
|
snprintf(path, sizeof(path), "%s/%s", RC_RUNLEVELDIR, runlevel);
|
||||||
if (stat(path, &buf) == 0 && S_ISDIR(buf.st_mode))
|
if (stat(path, &buf) == 0 && S_ISDIR(buf.st_mode))
|
||||||
|
|||||||
33
src/librc/meson.build
Normal file
33
src/librc/meson.build
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
rc_h_conf_data = configuration_data()
|
||||||
|
if rootprefix == '/'
|
||||||
|
rc_h_conf_data.set('PREFIX', '')
|
||||||
|
else
|
||||||
|
rc_h_conf_data.set('PREFIX', rootprefix)
|
||||||
|
endif
|
||||||
|
rc_h_conf_data.set('LIB', libname)
|
||||||
|
rc_h_conf_data.set('LIBEXECDIR', rc_libexecdir)
|
||||||
|
rc_h_conf_data.set('LOCAL_PREFIX', local_prefix)
|
||||||
|
rc_h_conf_data.set('PKG_PREFIX', pkg_prefix)
|
||||||
|
rc_h_conf_data.set('SYSCONFDIR', get_option('sysconfdir'))
|
||||||
|
|
||||||
|
librc_version = '1'
|
||||||
|
|
||||||
|
librc_sources = [
|
||||||
|
'librc.c',
|
||||||
|
'librc-daemon.c',
|
||||||
|
'librc-depend.c',
|
||||||
|
'librc-misc.c',
|
||||||
|
'librc-stringlist.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
rc_h = configure_file(input : 'rc.h.in', output : 'rc.h',
|
||||||
|
configuration : rc_h_conf_data)
|
||||||
|
|
||||||
|
librc = library('rc', librc_sources,
|
||||||
|
include_directories : [incdir, einfo_incdir],
|
||||||
|
link_depends : 'rc.map',
|
||||||
|
version : librc_version,
|
||||||
|
install : true,
|
||||||
|
install_dir : libdir)
|
||||||
|
|
||||||
|
install_headers(rc_h)
|
||||||
4
src/meson.build
Normal file
4
src/meson.build
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
subdir('common')
|
||||||
|
subdir('libeinfo')
|
||||||
|
subdir('librc')
|
||||||
|
subdir('rc')
|
||||||
@@ -22,6 +22,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <utmp.h>
|
||||||
#include <utmpx.h>
|
#include <utmpx.h>
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|||||||
@@ -73,7 +73,8 @@ const char * const longopts_help[] = {
|
|||||||
};
|
};
|
||||||
const char *usagestring = NULL;
|
const char *usagestring = NULL;
|
||||||
|
|
||||||
static int get_dirfd(char *path, bool symlinks) {
|
static int get_dirfd(char *path, bool symlinks)
|
||||||
|
{
|
||||||
char *ch;
|
char *ch;
|
||||||
char *item;
|
char *item;
|
||||||
char *linkpath = NULL;
|
char *linkpath = NULL;
|
||||||
@@ -92,13 +93,13 @@ static int get_dirfd(char *path, bool symlinks) {
|
|||||||
if (dirfd == -1)
|
if (dirfd == -1)
|
||||||
eerrorx("%s: unable to open the root directory: %s",
|
eerrorx("%s: unable to open the root directory: %s",
|
||||||
applet, strerror(errno));
|
applet, strerror(errno));
|
||||||
path_dupe = xstrdup(path);
|
ch = path;
|
||||||
ch = path_dupe;
|
|
||||||
while (*ch) {
|
while (*ch) {
|
||||||
if (*ch == '/')
|
if (*ch == '/')
|
||||||
components++;
|
components++;
|
||||||
ch++;
|
ch++;
|
||||||
}
|
}
|
||||||
|
path_dupe = xstrdup(path);
|
||||||
item = strtok(path_dupe, "/");
|
item = strtok(path_dupe, "/");
|
||||||
#ifdef O_PATH
|
#ifdef O_PATH
|
||||||
flags |= O_PATH;
|
flags |= O_PATH;
|
||||||
@@ -131,6 +132,7 @@ static int get_dirfd(char *path, bool symlinks) {
|
|||||||
*/
|
*/
|
||||||
close(new_dirfd);
|
close(new_dirfd);
|
||||||
} else {
|
} else {
|
||||||
|
/* now walk down the directory path */
|
||||||
close(dirfd);
|
close(dirfd);
|
||||||
dirfd = new_dirfd;
|
dirfd = new_dirfd;
|
||||||
free(linkpath);
|
free(linkpath);
|
||||||
@@ -140,13 +142,39 @@ static int get_dirfd(char *path, bool symlinks) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(path_dupe);
|
free(path_dupe);
|
||||||
if (linkpath) {
|
free(linkpath);
|
||||||
free(linkpath);
|
|
||||||
linkpath = NULL;
|
|
||||||
}
|
|
||||||
return dirfd;
|
return dirfd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char *clean_path(char *path)
|
||||||
|
{
|
||||||
|
char *ch;
|
||||||
|
char *ch2;
|
||||||
|
char *str;
|
||||||
|
str = xmalloc(strlen(path) + 1);
|
||||||
|
ch = path;
|
||||||
|
ch2 = str;
|
||||||
|
while (true) {
|
||||||
|
*ch2 = *ch;
|
||||||
|
ch++;
|
||||||
|
ch2++;
|
||||||
|
if (!*(ch-1))
|
||||||
|
break;
|
||||||
|
while (*(ch - 1) == '/' && *ch == '/')
|
||||||
|
ch++;
|
||||||
|
}
|
||||||
|
/* get rid of trailing / characters */
|
||||||
|
while ((ch = strrchr(str, '/'))) {
|
||||||
|
if (ch == str)
|
||||||
|
break;
|
||||||
|
if (!*(ch+1))
|
||||||
|
*ch = 0;
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode,
|
static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode,
|
||||||
inode_t type, bool trunc, bool chowner, bool symlinks, bool selinux_on)
|
inode_t type, bool trunc, bool chowner, bool symlinks, bool selinux_on)
|
||||||
{
|
{
|
||||||
@@ -249,7 +277,7 @@ static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode,
|
|||||||
|
|
||||||
if (mode && (st.st_mode & 0777) != mode) {
|
if (mode && (st.st_mode & 0777) != mode) {
|
||||||
if ((type != inode_dir) && (st.st_nlink > 1)) {
|
if ((type != inode_dir) && (st.st_nlink > 1)) {
|
||||||
eerror("%s: chmod: %s %s", applet, "Too many hard links to", path);
|
eerror("%s: chmod: Too many hard links to %s", applet, path);
|
||||||
close(readfd);
|
close(readfd);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -344,6 +372,7 @@ int main(int argc, char **argv)
|
|||||||
bool symlinks = false;
|
bool symlinks = false;
|
||||||
bool writable = false;
|
bool writable = false;
|
||||||
bool selinux_on = false;
|
bool selinux_on = false;
|
||||||
|
char *path = NULL;
|
||||||
|
|
||||||
applet = basename_c(argv[0]);
|
applet = basename_c(argv[0]);
|
||||||
while ((opt = getopt_long(argc, argv, getoptstring,
|
while ((opt = getopt_long(argc, argv, getoptstring,
|
||||||
@@ -406,12 +435,14 @@ int main(int argc, char **argv)
|
|||||||
selinux_on = true;
|
selinux_on = true;
|
||||||
|
|
||||||
while (optind < argc) {
|
while (optind < argc) {
|
||||||
|
path = clean_path(argv[optind]);
|
||||||
if (writable)
|
if (writable)
|
||||||
exit(!is_writable(argv[optind]));
|
exit(!is_writable(path));
|
||||||
if (do_check(argv[optind], uid, gid, mode, type, trunc, chowner,
|
if (do_check(path, uid, gid, mode, type, trunc, chowner,
|
||||||
symlinks, selinux_on))
|
symlinks, selinux_on))
|
||||||
retval = EXIT_FAILURE;
|
retval = EXIT_FAILURE;
|
||||||
optind++;
|
optind++;
|
||||||
|
free(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (selinux_on)
|
if (selinux_on)
|
||||||
|
|||||||
300
src/rc/meson.build
Normal file
300
src/rc/meson.build
Normal file
@@ -0,0 +1,300 @@
|
|||||||
|
rc_misc_c = files([
|
||||||
|
'rc-misc.c',
|
||||||
|
])
|
||||||
|
|
||||||
|
rc_plugin_c = files([
|
||||||
|
'rc-plugin.c',
|
||||||
|
])
|
||||||
|
|
||||||
|
rc_schedules_c = files([
|
||||||
|
'rc-schedules.c',
|
||||||
|
])
|
||||||
|
|
||||||
|
usage_c = files([
|
||||||
|
'_usage.c',
|
||||||
|
])
|
||||||
|
|
||||||
|
if selinux_dep.found()
|
||||||
|
rc_selinux_c = files([
|
||||||
|
'rc-selinux.c',
|
||||||
|
])
|
||||||
|
else
|
||||||
|
rc_selinux_c = []
|
||||||
|
endif
|
||||||
|
|
||||||
|
rc_wtmp_c = files([
|
||||||
|
'rc-wtmp.c',
|
||||||
|
])
|
||||||
|
|
||||||
|
executable('rc-status',
|
||||||
|
['rc-status.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [util_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: bindir)
|
||||||
|
|
||||||
|
executable('openrc',
|
||||||
|
['rc.c', 'rc-logger.c', rc_misc_c, rc_plugin_c, usage_c,
|
||||||
|
version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [dl_dep, util_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('openrc-run',
|
||||||
|
['openrc-run.c', rc_misc_c, rc_plugin_c, usage_c,
|
||||||
|
rc_selinux_c, version_h],
|
||||||
|
c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, selinux_dep, util_dep, crypt_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('rc',
|
||||||
|
['rc.c', 'rc-logger.c', rc_misc_c, rc_plugin_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [dl_dep, util_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('rc-service',
|
||||||
|
['rc-service.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('rc-update',
|
||||||
|
['rc-update.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('runscript',
|
||||||
|
['openrc-run.c', rc_misc_c, usage_c, 'rc-plugin.c',
|
||||||
|
rc_selinux_c, version_h],
|
||||||
|
c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, util_dep, selinux_dep, crypt_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('start-stop-daemon',
|
||||||
|
['start-stop-daemon.c', 'rc-pipes.c', rc_misc_c, rc_schedules_c,
|
||||||
|
rc_selinux_c, usage_c, version_h],
|
||||||
|
c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [audit_dep, dl_dep, pam_dep, pam_misc_dep, util_dep, selinux_dep, crypt_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('supervise-daemon',
|
||||||
|
['supervise-daemon.c', rc_misc_c, rc_plugin_c, rc_schedules_c,
|
||||||
|
usage_c, version_h],
|
||||||
|
c_args : [cc_branding_flags, cc_pam_flags, cc_selinux_flags],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [dl_dep, pam_dep, util_dep, selinux_dep],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
if os == 'Linux'
|
||||||
|
executable('openrc-init',
|
||||||
|
['openrc-init.c', rc_plugin_c, rc_wtmp_c, version_h],
|
||||||
|
c_args : cc_selinux_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [dl_dep, selinux_dep],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
|
||||||
|
executable('openrc-shutdown',
|
||||||
|
['openrc-shutdown.c', 'broadcast.c', 'rc-sysvinit.c', rc_misc_c,
|
||||||
|
usage_c, rc_wtmp_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: sbindir)
|
||||||
|
endif
|
||||||
|
|
||||||
|
einfo_execs = [
|
||||||
|
'einfon',
|
||||||
|
'einfo',
|
||||||
|
'ewarnn',
|
||||||
|
'ewarn',
|
||||||
|
'eerrorn',
|
||||||
|
'eerror',
|
||||||
|
'ebegin',
|
||||||
|
'eend',
|
||||||
|
'ewend',
|
||||||
|
'eindent',
|
||||||
|
'eoutdent',
|
||||||
|
'esyslog',
|
||||||
|
'eval_ecolors',
|
||||||
|
'ewaitfile',
|
||||||
|
'veinfo',
|
||||||
|
'vewarn',
|
||||||
|
'vebegin',
|
||||||
|
'veend',
|
||||||
|
'vewend',
|
||||||
|
'veindent',
|
||||||
|
'veoutdent',
|
||||||
|
]
|
||||||
|
|
||||||
|
foreach exec: einfo_execs
|
||||||
|
executable(exec,
|
||||||
|
['do_e.c', rc_misc_c, version_h],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
executable('checkpath',
|
||||||
|
['checkpath.c', rc_misc_c, usage_c, rc_selinux_c,
|
||||||
|
version_h],
|
||||||
|
c_args : [cc_audit_flags, cc_branding_flags, cc_pam_flags, cc_selinux_flags],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
dependencies: [audit_dep, pam_dep, pam_misc_dep, selinux_dep, crypt_dep],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
executable('fstabinfo',
|
||||||
|
['fstabinfo.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
executable('mountinfo',
|
||||||
|
['mountinfo.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
executable('rc-depend',
|
||||||
|
['rc-depend.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
executable('is_newer_than',
|
||||||
|
['is_newer_than.c', rc_misc_c, version_h],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
executable('is_older_than',
|
||||||
|
['is_older_than.c', rc_misc_c, version_h],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
service_execs = [
|
||||||
|
'service_starting',
|
||||||
|
'service_started',
|
||||||
|
'service_stopping',
|
||||||
|
'service_stopped',
|
||||||
|
'service_inactive',
|
||||||
|
'service_wasinactive',
|
||||||
|
'service_hotplugged',
|
||||||
|
'service_started_daemon',
|
||||||
|
'service_crashed',
|
||||||
|
]
|
||||||
|
|
||||||
|
foreach exec : service_execs
|
||||||
|
executable(exec,
|
||||||
|
['do_service.c', rc_misc_c, version_h],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
value_execs = [
|
||||||
|
'service_get_value',
|
||||||
|
'service_set_value',
|
||||||
|
'get_options',
|
||||||
|
'save_options',
|
||||||
|
]
|
||||||
|
|
||||||
|
foreach exec : value_execs
|
||||||
|
executable(exec,
|
||||||
|
['do_value.c', rc_misc_c, version_h],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo, librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
if os == 'Linux'
|
||||||
|
executable('kill_all',
|
||||||
|
['kill_all.c', usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo,librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
endif
|
||||||
|
|
||||||
|
executable('shell_var',
|
||||||
|
['shell_var.c'],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_bindir)
|
||||||
|
|
||||||
|
mark_service_execs = [
|
||||||
|
'mark_service_starting',
|
||||||
|
'mark_service_started',
|
||||||
|
'mark_service_stopping',
|
||||||
|
'mark_service_stopped',
|
||||||
|
'mark_service_inactive',
|
||||||
|
'mark_service_wasinactive',
|
||||||
|
'mark_service_hotplugged',
|
||||||
|
'mark_service_failed',
|
||||||
|
'mark_service_crashed',
|
||||||
|
]
|
||||||
|
|
||||||
|
foreach exec : mark_service_execs
|
||||||
|
executable(exec,
|
||||||
|
['do_mark_service.c', rc_misc_c, version_h],
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo,librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_sbindir)
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
executable('rc-abort',
|
||||||
|
'rc-abort.c',
|
||||||
|
include_directories: [einfo_incdir],
|
||||||
|
link_with: [libeinfo],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_sbindir)
|
||||||
|
|
||||||
|
executable('swclock',
|
||||||
|
['swclock.c', rc_misc_c, usage_c, version_h],
|
||||||
|
c_args : cc_branding_flags,
|
||||||
|
include_directories: [incdir, einfo_incdir, rc_incdir],
|
||||||
|
link_with: [libeinfo,librc],
|
||||||
|
install: true,
|
||||||
|
install_dir: rc_sbindir)
|
||||||
@@ -66,7 +66,7 @@ int selinux_util_label(const char *path)
|
|||||||
int retval = 0;
|
int retval = 0;
|
||||||
int enforce;
|
int enforce;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
security_context_t con;
|
char *con;
|
||||||
|
|
||||||
enforce = security_getenforce();
|
enforce = security_getenforce();
|
||||||
if (retval < 0)
|
if (retval < 0)
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
#include "einfo.h"
|
#include "einfo.h"
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
@@ -128,12 +129,12 @@ static char *get_uptime(const char *service)
|
|||||||
}
|
}
|
||||||
if (diff_days > 0)
|
if (diff_days > 0)
|
||||||
xasprintf(&uptime,
|
xasprintf(&uptime,
|
||||||
"%ld day(s) %02ld:%02ld:%02ld (%s)",
|
"%"PRId64" day(s) %02"PRId64":%02"PRId64":%02"PRId64" (%s)",
|
||||||
diff_days, diff_hours, diff_mins, diff_secs,
|
diff_days, diff_hours, diff_mins, diff_secs,
|
||||||
start_count);
|
start_count);
|
||||||
else
|
else
|
||||||
xasprintf(&uptime,
|
xasprintf(&uptime,
|
||||||
"%02ld:%02ld:%02ld (%s)",
|
"%02"PRId64":%02"PRId64":%02"PRId64" (%s)",
|
||||||
diff_hours, diff_mins, diff_secs, start_count);
|
diff_hours, diff_mins, diff_secs, start_count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* supervise-daemon
|
* supervise-daemon
|
||||||
* This is an experimental supervisor for daemons.
|
* This is a supervisor for daemons.
|
||||||
* It will start a deamon and make sure it restarts if it crashes.
|
* It will start a deamon and make sure it restarts if it crashes.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -423,7 +423,8 @@ static void child_process(char *exec, char **argv)
|
|||||||
if ((strncmp(env->value, "RC_", 3) == 0 &&
|
if ((strncmp(env->value, "RC_", 3) == 0 &&
|
||||||
strncmp(env->value, "RC_SERVICE=", 11) != 0 &&
|
strncmp(env->value, "RC_SERVICE=", 11) != 0 &&
|
||||||
strncmp(env->value, "RC_SVCNAME=", 11) != 0) ||
|
strncmp(env->value, "RC_SVCNAME=", 11) != 0) ||
|
||||||
strncmp(env->value, "SSD_NICELEVEL=", 14) == 0)
|
strncmp(env->value, "SSD_NICELEVEL=", 14) == 0 ||
|
||||||
|
strncmp(env->value, "SSD_IONICELEVEL=", 16) == 0)
|
||||||
{
|
{
|
||||||
p = strchr(env->value, '=');
|
p = strchr(env->value, '=');
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
@@ -733,6 +734,17 @@ int main(int argc, char **argv)
|
|||||||
if (sscanf(tmp, "%d", &nicelevel) != 1)
|
if (sscanf(tmp, "%d", &nicelevel) != 1)
|
||||||
eerror("%s: invalid nice level `%s' (SSD_NICELEVEL)",
|
eerror("%s: invalid nice level `%s' (SSD_NICELEVEL)",
|
||||||
applet, tmp);
|
applet, tmp);
|
||||||
|
if ((tmp = getenv("SSD_IONICELEVEL"))) {
|
||||||
|
int n = sscanf(tmp, "%d:%d", &ionicec, &ioniced);
|
||||||
|
if (n != 1 && n != 2)
|
||||||
|
eerror("%s: invalid ionice level `%s' (SSD_IONICELEVEL)",
|
||||||
|
applet, tmp);
|
||||||
|
if (ionicec == 0)
|
||||||
|
ioniced = 0;
|
||||||
|
else if (ionicec == 3)
|
||||||
|
ioniced = 7;
|
||||||
|
ionicec <<= 13; /* class shift */
|
||||||
|
}
|
||||||
|
|
||||||
/* Get our user name and initial dir */
|
/* Get our user name and initial dir */
|
||||||
p = getenv("USER");
|
p = getenv("USER");
|
||||||
|
|||||||
11
support/deptree2dot/meson.build
Normal file
11
support/deptree2dot/meson.build
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
deptree2dot_dir = support_dir / 'deptree2dot'
|
||||||
|
|
||||||
|
deptree2dot_bin = ['deptree2dot']
|
||||||
|
deptree2dot_data = ['README.md']
|
||||||
|
|
||||||
|
install_data(deptree2dot_bin,
|
||||||
|
install_dir : deptree2dot_dir,
|
||||||
|
install_mode : 'rwxr-xr-x')
|
||||||
|
|
||||||
|
install_data(deptree2dot_data,
|
||||||
|
install_dir : deptree2dot_dir)
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
# This file may not be copied, modified, propagated, or distributed
|
# This file may not be copied, modified, propagated, or distributed
|
||||||
# except according to the terms contained in the LICENSE file.
|
# except according to the terms contained in the LICENSE file.
|
||||||
|
|
||||||
command=@PKG_PREFIX@/sbin/avahi-dnsconfd
|
command=/sbin/avahi-dnsconfd
|
||||||
command_args="$avahi_dnsconfd_args -D"
|
command_args="$avahi_dnsconfd_args -D"
|
||||||
pidfile=/var/run/avahi-dnsconfd.pid
|
pidfile=/var/run/avahi-dnsconfd.pid
|
||||||
name="Avahi DNS Configuration Daemon"
|
name="Avahi DNS Configuration Daemon"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
# This file may not be copied, modified, propagated, or distributed
|
# This file may not be copied, modified, propagated, or distributed
|
||||||
# except according to the terms contained in the LICENSE file.
|
# except according to the terms contained in the LICENSE file.
|
||||||
|
|
||||||
command=@PKG_PREFIX@/sbin/avahi-daemon
|
command=/sbin/avahi-daemon
|
||||||
command_args="$avahid_args -D"
|
command_args="$avahid_args -D"
|
||||||
pidfile=/var/run/avahi-daemon/pid
|
pidfile=/var/run/avahi-daemon/pid
|
||||||
name="Avahi Service Advertisement Daemon"
|
name="Avahi Service Advertisement Daemon"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
# This file may not be copied, modified, propagated, or distributed
|
# This file may not be copied, modified, propagated, or distributed
|
||||||
# except according to the terms contained in the LICENSE file.
|
# except according to the terms contained in the LICENSE file.
|
||||||
|
|
||||||
command=@PKG_PREFIX@/bin/dbus-daemon
|
command=/bin/dbus-daemon
|
||||||
pidfile=/var/run/dbus/pid
|
pidfile=/var/run/dbus/pid
|
||||||
command_args="${dbusd_args---system}"
|
command_args="${dbusd_args---system}"
|
||||||
name="Message Bus Daemon"
|
name="Message Bus Daemon"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
# This file may not be copied, modified, propagated, or distributed
|
# This file may not be copied, modified, propagated, or distributed
|
||||||
# except according to the terms contained in the LICENSE file.
|
# except according to the terms contained in the LICENSE file.
|
||||||
|
|
||||||
command=@PKG_PREFIX@/sbin/dnsmasq
|
command=/sbin/dnsmasq
|
||||||
command_args=$dnsmasq_args
|
command_args=$dnsmasq_args
|
||||||
pidfile=/var/run/dnsmasq.pid
|
pidfile=/var/run/dnsmasq.pid
|
||||||
required_files=/etc/dnsmasq.conf
|
required_files=/etc/dnsmasq.conf
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
# This file may not be copied, modified, propagated, or distributed
|
# This file may not be copied, modified, propagated, or distributed
|
||||||
# except according to the terms contained in the LICENSE file.
|
# except according to the terms contained in the LICENSE file.
|
||||||
|
|
||||||
command=@PKG_PREFIX@/sbin/hald
|
command=/sbin/hald
|
||||||
pidfile=/var/run/hald/hald.pid
|
pidfile=/var/run/hald/hald.pid
|
||||||
command_args=$hald_args
|
command_args=$hald_args
|
||||||
name="Hardware Abstraction Layer Daemon"
|
name="Hardware Abstraction Layer Daemon"
|
||||||
|
|||||||
30
support/init.d.examples/meson.build
Normal file
30
support/init.d.examples/meson.build
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
init_d_examples_dir = support_dir / 'init.d.examples'
|
||||||
|
|
||||||
|
init_d_examples = [
|
||||||
|
'avahi-dnsconfd.in',
|
||||||
|
'avahid.in',
|
||||||
|
'dhcpcd.in',
|
||||||
|
'dbus.in',
|
||||||
|
'hald.in',
|
||||||
|
'named.in',
|
||||||
|
'ntpd.in',
|
||||||
|
'openvpn.in',
|
||||||
|
'polkitd.in',
|
||||||
|
'sshd.in',
|
||||||
|
'wpa_supplicant.in',
|
||||||
|
]
|
||||||
|
|
||||||
|
init_d_examples_data = [
|
||||||
|
'README.md',
|
||||||
|
]
|
||||||
|
|
||||||
|
foreach init_d_example: init_d_examples
|
||||||
|
configure_file(input : init_d_example,
|
||||||
|
output : '@BASENAME@',
|
||||||
|
configuration : init_d_conf_data,
|
||||||
|
install_dir : init_d_examples_dir,
|
||||||
|
install_mode : 'rwxr-xr-x')
|
||||||
|
endforeach
|
||||||
|
|
||||||
|
install_data(init_d_examples_data,
|
||||||
|
install_dir : init_d_examples_dir)
|
||||||
@@ -12,10 +12,10 @@
|
|||||||
vpn=${RC_SVCNAME#*.}
|
vpn=${RC_SVCNAME#*.}
|
||||||
name="OpenVPN"
|
name="OpenVPN"
|
||||||
[ "$vpn" != openvpn ] && name="$name ($vpn)"
|
[ "$vpn" != openvpn ] && name="$name ($vpn)"
|
||||||
command=@PKG_PREFIX@/sbin/openvpn
|
command=/sbin/openvpn
|
||||||
|
|
||||||
pidfile=/var/run/"$RC_SVCNAME".pid
|
pidfile=/var/run/"$RC_SVCNAME".pid
|
||||||
: ${openvpn_dir:=@PKG_PREFIX@/etc/openvpn}
|
: ${openvpn_dir:=/etc/openvpn}
|
||||||
: ${openvpn_config:=$openvpn_dir/$vpn.conf}
|
: ${openvpn_config:=$openvpn_dir/$vpn.conf}
|
||||||
command_args="$openvpn_args --daemon --config $openvpn_config"
|
command_args="$openvpn_args --daemon --config $openvpn_config"
|
||||||
command_args="$command_args --writepid $pidfile"
|
command_args="$command_args --writepid $pidfile"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
# This file may not be copied, modified, propagated, or distributed
|
# This file may not be copied, modified, propagated, or distributed
|
||||||
# except according to the terms contained in the LICENSE file.
|
# except according to the terms contained in the LICENSE file.
|
||||||
|
|
||||||
command=@PKG_PREFIX@/sbin/polkitd
|
command=/sbin/polkitd
|
||||||
pidfile=/var/run/polkitd/polkitd.pid
|
pidfile=/var/run/polkitd/polkitd.pid
|
||||||
command_args="$polkitd_args"
|
command_args="$polkitd_args"
|
||||||
name="PolicyKit Daemon"
|
name="PolicyKit Daemon"
|
||||||
|
|||||||
7
support/meson.build
Normal file
7
support/meson.build
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
support_dir = get_option('datadir') / meson.project_name().to_lower()
|
||||||
|
support_dir = support_dir / 'support'
|
||||||
|
|
||||||
|
subdir('deptree2dot')
|
||||||
|
subdir('init.d.examples')
|
||||||
|
subdir('openvpn')
|
||||||
|
subdir('sysvinit')
|
||||||
10
support/openvpn/meson.build
Normal file
10
support/openvpn/meson.build
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
openvpn_dir = support_dir / 'openvpn'
|
||||||
|
|
||||||
|
openvpn_bin = ['down.sh', 'up.sh']
|
||||||
|
openvpn_data = ['README.md']
|
||||||
|
|
||||||
|
install_data(openvpn_bin,
|
||||||
|
install_dir : openvpn_dir,
|
||||||
|
install_mode : 'rwxr-xr-x')
|
||||||
|
install_data(openvpn_data,
|
||||||
|
install_dir : openvpn_dir)
|
||||||
6
support/sysvinit/meson.build
Normal file
6
support/sysvinit/meson.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
sysvinit_dir = support_dir / 'sysvinit'
|
||||||
|
|
||||||
|
sysvinit_data = ['halt.sh', 'inittab', 'README.md']
|
||||||
|
|
||||||
|
install_data(sysvinit_data,
|
||||||
|
install_dir : sysvinit_dir)
|
||||||
6
sysctl.d/meson.build
Normal file
6
sysctl.d/meson.build
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
sysctl_data = [
|
||||||
|
'README',
|
||||||
|
]
|
||||||
|
|
||||||
|
sysctldir = get_option('sysconfdir') / 'sysctl.d'
|
||||||
|
install_data(sysctl_data, install_dir : sysctldir)
|
||||||
13
tools/meson_final.sh
Executable file
13
tools/meson_final.sh
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
rc_libexecdir="$1"
|
||||||
|
os="$2"
|
||||||
|
|
||||||
|
if [ ${os} != Linux ]; then
|
||||||
|
install -d "${DESTDIR}/${rc_libexecdir}"/init.d
|
||||||
|
fi
|
||||||
|
install -d "${DESTDIR}/${rc_libexecdir}"/tmp
|
||||||
|
install -m 644 "${MESON_BUILD_ROOT}/src/common/version" "${DESTDIR}/${rc_libexecdir}"
|
||||||
101
tools/meson_runlevels.sh
Executable file
101
tools/meson_runlevels.sh
Executable file
@@ -0,0 +1,101 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
os="$1"
|
||||||
|
net="$2"
|
||||||
|
rc_libexecdir="$3"
|
||||||
|
sysconfdir="$4"
|
||||||
|
sysvinit="$5"
|
||||||
|
|
||||||
|
init_d_dir="${sysconfdir}/init.d"
|
||||||
|
leveldir="${sysconfdir}/runlevels"
|
||||||
|
sysinitdir="${leveldir}/sysinit"
|
||||||
|
bootdir="${leveldir}/boot"
|
||||||
|
defaultdir="${leveldir}/default"
|
||||||
|
nonetworkdir="${leveldir}/nonetwork"
|
||||||
|
shutdowndir="${leveldir}/shutdown"
|
||||||
|
|
||||||
|
sysinit=
|
||||||
|
case "${os}" in
|
||||||
|
Linux)
|
||||||
|
sysinit="${sysinit} cgroups devfs dmesg sysfs"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
boot="bootmisc fsck hostname localmount loopback root swap sysctl urandom"
|
||||||
|
if [ "${net}" = yes ]; then
|
||||||
|
boot="${boot} network staticroute"
|
||||||
|
fi
|
||||||
|
boot_BSD="hostid newsyslog savecore syslogd"
|
||||||
|
|
||||||
|
case "${os}" in
|
||||||
|
DragonFly)
|
||||||
|
boot="${boot} ${boot_BSD}"
|
||||||
|
;;
|
||||||
|
FreeBSD|GNU-kFreeBSD)
|
||||||
|
boot="${boot} ${boot_BSD} adjkerntz dumpon modules syscons"
|
||||||
|
;;
|
||||||
|
Linux)
|
||||||
|
boot="${boot} binfmt hwclock keymaps modules mtab procfs
|
||||||
|
save-keymaps save-termencoding termencoding"
|
||||||
|
;;
|
||||||
|
NetBSD)
|
||||||
|
boot="${boot} ${boot_BSD} devdb swap-blk tys wscons"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
default="local netmount"
|
||||||
|
|
||||||
|
nonetwork="local"
|
||||||
|
|
||||||
|
shutdown="savecache"
|
||||||
|
case "${os}" in
|
||||||
|
Linux)
|
||||||
|
shutdown="${shutdown} killprocs mount-ro"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if ! test -d "${DESTDIR}${sysinitdir}"; then
|
||||||
|
install -d "${DESTDIR}${sysinitdir}"
|
||||||
|
for x in ${sysinit}; do
|
||||||
|
ln -snf "${init_d_dir}/$x" "${DESTDIR}${sysinitdir}/$x"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! test -d "${DESTDIR}${bootdir}"; then
|
||||||
|
install -d "${DESTDIR}${bootdir}"
|
||||||
|
for x in ${boot}; do
|
||||||
|
ln -snf "${init_d_dir}/$x" "${DESTDIR}${bootdir}/$x"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! test -d "${DESTDIR}${defaultdir}"; then
|
||||||
|
install -d "${DESTDIR}${defaultdir}"
|
||||||
|
for x in ${default}; do
|
||||||
|
ln -snf "${init_d_dir}/$x" "${DESTDIR}${defaultdir}/$x"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! test -d "${DESTDIR}${nonetworkdir}"; then
|
||||||
|
install -d "${DESTDIR}${nonetworkdir}"
|
||||||
|
for x in ${nonetwork}; do
|
||||||
|
ln -snf "${init_d_dir}/$x" "${DESTDIR}${nonetworkdir}/$x"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! test -d "${DESTDIR}${shutdowndir}"; then
|
||||||
|
install -d "${DESTDIR}${shutdowndir}"
|
||||||
|
for x in ${shutdown}; do
|
||||||
|
ln -snf "${init_d_dir}/$x" "${DESTDIR}${shutdowndir}/$x"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
if test "${sysvinit}" = yes && test "${os}" = Linux; then \
|
||||||
|
for x in tty1 tty2 tty3 tty4 tty5 tty6; do
|
||||||
|
ln -snf "${init_d_dir}/agetty" "${DESTDIR}/${init_d_dir}/agetty.$x"
|
||||||
|
ln -snf "${init_d_dir}/agetty.$x" "${DESTDIR}/${defaultdir}/agetty.$x"
|
||||||
|
done;
|
||||||
|
fi
|
||||||
|
|
||||||
|
ln -snf "${rc_libexecdir}"/sh/functions.sh "${DESTDIR}/${init_d_dir}"
|
||||||
9
zsh-completion/meson.build
Normal file
9
zsh-completion/meson.build
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
zsh_completions = [
|
||||||
|
'_openrc',
|
||||||
|
'_rc-service',
|
||||||
|
'_rc-status',
|
||||||
|
'_rc-update',
|
||||||
|
]
|
||||||
|
|
||||||
|
install_data(zsh_completions,
|
||||||
|
install_dir : get_option('datadir') / 'zsh/site-functions')
|
||||||
Reference in New Issue
Block a user