Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ option('sysvinit', type : 'boolean', value : false,
description : 'enable SysVinit compatibility (linux only)')
option('zsh-completions', type : 'boolean',
description : 'install zsh completions')
option('uucp_group', type : 'string', value : 'uucp',
description : 'group to use for /run/lock')
option('agetty', type: 'array',
value: ['tty1', 'tty2', 'tty3', 'tty4', 'tty5', 'tty6'],
description : 'agetty symlinks to install when sysvinit is also specified')
2 changes: 1 addition & 1 deletion sh/init.sh.Linux.in
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ elif ! mountinfo -q /run; then
fi

checkpath -d "$RC_SVCDIR"
checkpath -d -m 0775 -o root:uucp /run/lock
checkpath -d -m 0775 -o root:@UUCP_GROUP@ /run/lock

# Try to mount xenfs as early as possible, otherwise rc_sys() will always
# return RC_SYS_XENU and will think that we are in a domU while it's not.
Expand Down
1 change: 1 addition & 0 deletions sh/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ 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_conf_data.set('UUCP_GROUP', get_option('uucp_group'))

sh = [
'rc-functions.sh',
Expand Down