This repository was archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrc.conf
More file actions
53 lines (48 loc) · 1.73 KB
/
rc.conf
File metadata and controls
53 lines (48 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# /etc/rc.conf - Main Configuration for Arch Hurd
#
# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
# LOCALE: available languages can be listed with the 'locale -a' command
# USECOLOR: use ANSI color sequences in startup messages
#
LOCALE="POSIX"
USECOLOR="yes"
#------------------------------------------------------------------------
# CONSOLE
#------------------------------------------------------------------------
#
# CONSOLEDISPLAY: Display driver used for console. Usually vga or ncursesw
# CONSOLEFONT: Full path to the font of your choice. When nothing is specified the default
# font at /share/hurd/vga-system.bdf is used
# CONSOLEMOUSE: pc_mouse if you want to use the mouse driver
# CONSOLEKBD: pc_kbd if you want to use the keyboard driver
# CONSOLESPEAKER: generic_speaker if you want to use the speaker
# CONSOLEOPTS: See 'console --help' for further options
#
# All drivers are located in /lib/hurd/console
#
CONSOLEDISPLAY="vga"
CONSOLEFONT=
CONSOLEMOUSE=
CONSOLEKBD="pc_kbd"
CONSOLESPEAKER="generic_speaker"
CONSOLEOPTS="-c"
# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
#
HOSTNAME="myhost"
# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
#
DAEMONS=(syslog-ng !crond)