12 lines
227 B
Bash
Executable File
12 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
set -f
|
|
|
|
. /image-entry.d/00-common.envsh
|
|
|
|
find /run/angie/ -mindepth 1 -exec rm -rf {} +
|
|
|
|
[ -d /run/angie/tmp ] || install -d -m 03777 /run/angie/tmp
|
|
[ -d /run/angie/lock ] || install_userdir /run/angie/lock
|
|
|
|
exit 0
|