diff options
Diffstat (limited to 'comms/efax/INSTALL')
-rwxr-xr-x | comms/efax/INSTALL | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/comms/efax/INSTALL b/comms/efax/INSTALL new file mode 100755 index 00000000000..da11e0ac39f --- /dev/null +++ b/comms/efax/INSTALL @@ -0,0 +1,10 @@ +#!/bin/sh +# +test -d /var/spool || \ + ( mkdir /var/spool ; chmod 755 /var/spool ) +test -d /var/spool/efax || \ + ( mkdir /var/spool/efax ; chmod 755 /var/spool/efax ) +test -d /var/log || \ + ( mkdir /var/log ; chmod 755 /var/log ) +test -d /var/log/efax || \ + ( mkdir /var/log/efax ; chmod 755 /var/log/efax ) |