9 lines
88 B
Bash
9 lines
88 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -e /run/ipa ]; then
|
|
mkdir -m 0700 /run/ipa
|
|
fi
|
|
|
|
#DEBHELPER#
|