0001-fix-the-syntax-for-directory-setup.patch

Proper directives - Robert Schweikert, 05/15/2012 10:04 PM

Download (988 Bytes)

View differences:

share/etc/systemd/openSUSE/onetmpdirs
1
RUNDIR=/var/run/one
2
if ! [ -d $RUNDIR ]; then
3
  mkdir -p -m 770 $RUNDIR
4
  chown oneadmin:cloud $RUNDIR
5
fi
6

  
7
LOCKDIR=/var/lock/one
8
if ! [ -d $LOCKDIR ]; then
9
  mkdir -p -m 770 $LOCKDIR
10
  chown oneadmin:cloud $LOCKDIR
11
fi
1
d /var/lock/one 0755 oneadmin cloud
2
d /var/run/one 0755 oneadmin cloud
12
-