blob: 21ff75cd375462c902e8267a24a6d56cb664bf27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
# Copyright 2017 Redcore Linux Project
# Distributed under the terms of the GNU General Public License v2
depend() {
after localmount
before keymaps
}
start() {
ebegin "Setting up live user"
/usr/libexec/redcorelive-openrc.sh
eend $?
}
|