diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-10 06:53:59 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-10 06:53:59 (EST) |
commit | 341770570135e516af9858ced385651b030c5042 (patch) | |
tree | 07f25d039a9f17792423f9a51c0f256ae067938f | |
parent | db225718e10b0f32859e8c04d85dc2126ba96d16 (diff) |
profile/proteanos: Move init script to S00
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/profile/proteanos.sh | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -41,6 +41,9 @@ Error handling and bug fixes: * The dependency solver now solves dependencies of packages whose names contain ":" (such as coinstallable library development packages in ProteanOS). + * The foreign installation service initialization script is now + scheduled to run before any other initialization scripts on a newly + installed system. ProteanOS Development Kit version 2.0.1 --------------------------------------- diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh index bec35ed..30e20f4 100644 --- a/src/profile/proteanos.sh +++ b/src/profile/proteanos.sh @@ -320,8 +320,8 @@ prof_proteanos_configure_system_foreign() shift 3 printf '%s' "${_PROF_PROTEANOS_INSTALL_SERVICE}" \ - >"${root}/etc/rc.d/S10install" - chmod -- 0755 "${root}/etc/rc.d/S10install" + >"${root}/etc/rc.d/S00install" + chmod -- 0755 "${root}/etc/rc.d/S00install" printf 'proteanos\n' >"${root}/etc/hostname" [ -e "${root}/etc/passwd" ] || printf \ 'root::0:0:root:/root:/bin/sh\n' >"${root}/etc/passwd" |