diff options
author | midipix <writeonce@midipix.org> | 2019-06-20 09:35:16 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-06-20 09:35:16 -0400 |
commit | 2b6df183d7c0bc97b0825f52dfe8a2ec52577009 (patch) | |
tree | 821608bbd3143117e5e78c36a467a5746a564cba | |
parent | dd3e7b6f051c99ae2327ef85d9fbc3f69edb2ddd (diff) | |
download | mpackage-2b6df183d7c0bc97b0825f52dfe8a2ec52577009.tar.bz2 mpackage-2b6df183d7c0bc97b0825f52dfe8a2ec52577009.tar.xz |
custom.sh: create ntctty's default log directory.
-rwxr-xr-x | once/custom.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/once/custom.sh b/once/custom.sh index c3d611a..26b3e58 100755 --- a/once/custom.sh +++ b/once/custom.sh @@ -13,6 +13,9 @@ fi mkdir -p "$SYSROOT"/tmp || exit 2 chmod 0775 "$SYSROOT"/tmp || exit 2 +mkdir -p "$SYSROOT"/var/log/ntctty || exit 2 +chmod 0775 "$SYSROOT"/var/log/ntctty || exit 2 + if [ -f /vendor.sh ]; then /vendor.sh fi |