17 lines
336 B
Plaintext
Executable File
17 lines
336 B
Plaintext
Executable File
#!/usr/bin/openrc-run
|
|
# Copyright 2014 Aaditya Bagga (aaditya_gnulinux@zoho.com)
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
description="LiveMedia Config Script"
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting manjaro live script"
|
|
# run the manjaro live script
|
|
/usr/bin/manjaro-live
|
|
eend $?
|
|
}
|