mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 04:51:44 +00:00
38716ddfeb
conceived and developed for many years by Roger Leigh Signed-off-by: Javier Marcet <javier@marcet.info>
11 lines
234 B
Bash
Executable File
11 lines
234 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=94
|
|
|
|
start() {
|
|
[ -d /var/lib/schroot ] || {
|
|
mkdir -p /var/lib/schroot/session /var/lib/schroot/unpack /var/lib/schroot/union/overlay /var/lib/schroot/union/underlay
|
|
chmod 0700 /var/lib/schroot
|
|
}
|
|
}
|