diff options
author | Eric Hameleers <alien@slackware.com> | 2016-07-31 22:21:05 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2016-07-31 22:21:05 +0200 |
commit | 99b87adf313ef87f24ff35213a011b93720a6593 (patch) | |
tree | aaefec02a903c693cccd592e8ce38b7a7579169a /make_slackware_live.sh | |
parent | 57de866748b5c5873c8d07cc4329e573e533342b (diff) | |
download | liveslak-99b87adf313ef87f24ff35213a011b93720a6593.tar.gz liveslak-99b87adf313ef87f24ff35213a011b93720a6593.tar.xz |
Live OS: enable CUPS by default.
Diffstat (limited to 'make_slackware_live.sh')
-rwxr-xr-x | make_slackware_live.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 0efad5b..7411511 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1499,8 +1499,9 @@ sed -i ${LIVE_ROOTDIR}/etc/inittab -e "s/\(id:\).\(:initdefault:\)/\1${RUNLEVEL} [ -f ${LIVE_ROOTDIR}/etc/rc.d/rc.yp ] && chmod -x ${LIVE_ROOTDIR}/etc/rc.d/rc.yp [ -f ${LIVE_ROOTDIR}/etc/rc.d/rc.sshd ] && chmod -x ${LIVE_ROOTDIR}/etc/rc.d/rc.sshd -# But enable NFS client support: +# But enable NFS client support and CUPS: [ -f ${LIVE_ROOTDIR}/etc/rc.d/rc.rpc ] && chmod +x ${LIVE_ROOTDIR}/etc/rc.d/rc.rpc +[ -f ${LIVE_ROOTDIR}/etc/rc.d/rc.cups ] && chmod +x ${LIVE_ROOTDIR}/etc/rc.d/rc.cups # Add a softvol pre-amp to ALSA - some computers have too low volumes. # If etc/asound.conf exists it's configuring ALSA to use Pulse, |