Move redoxer configs here and update installer
This commit is contained in:
parent
308b540816
commit
48262cb7be
17
config/redoxer-gui.toml
Normal file
17
config/redoxer-gui.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Configuration for redoxer GUI image
|
||||
|
||||
include = ["redoxer.toml"]
|
||||
|
||||
# Package settings
|
||||
[packages]
|
||||
orbdata = {}
|
||||
orbital = {}
|
||||
|
||||
# Override to run inside of orbital
|
||||
[[files]]
|
||||
path = "/usr/lib/init.d/30_redoxer"
|
||||
data = """
|
||||
echo
|
||||
echo ## running redoxer in orbital ##
|
||||
orbital redoxerd
|
||||
"""
|
53
config/redoxer.toml
Normal file
53
config/redoxer.toml
Normal file
|
@ -0,0 +1,53 @@
|
|||
# Configuration for redoxer image
|
||||
|
||||
include = ["net.toml"]
|
||||
|
||||
# Package settings
|
||||
[packages]
|
||||
bash = {}
|
||||
ca-certificates = {}
|
||||
coreutils = {}
|
||||
extrautils = {}
|
||||
findutils = {}
|
||||
gcc13 = {}
|
||||
gnu-binutils = {}
|
||||
netdb = {}
|
||||
pkgutils = {}
|
||||
redoxerd = {}
|
||||
relibc = {}
|
||||
|
||||
# Override to not background dhcpd
|
||||
[[files]]
|
||||
path = "/usr/lib/init.d/10_net"
|
||||
data = """
|
||||
smolnetd
|
||||
dnsd
|
||||
dhcpd
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/usr/lib/init.d/20_env"
|
||||
data = """
|
||||
echo
|
||||
echo ## preparing environment ##
|
||||
export GROUPS 0
|
||||
export HOME /root
|
||||
export HOST redox
|
||||
export SHELL /bin/sh
|
||||
export UID 0
|
||||
export USER root
|
||||
cd /root
|
||||
env
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/usr/lib/init.d/30_redoxer"
|
||||
data = """
|
||||
echo
|
||||
echo ## running redoxer ##
|
||||
redoxerd
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/etc/pkg.d/50_redox"
|
||||
data = "https://static.redox-os.org/pkg"
|
|
@ -1 +1 @@
|
|||
Subproject commit dbfdd417f1398ba525e84e5c7c81788f35c2a838
|
||||
Subproject commit 6dfcee04ad277df02a7f317535b5954dad3069ec
|
Loading…
Reference in a new issue