Ignore:
Timestamp:
06/22/17 08:39:54 (8 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
master, perl-5.22
Children:
5160d62
Parents:
21d4867 (diff), 6782bd4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'gcc484'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • npl/fileserver/samba_conf/root/etc/postinst.d/post.samba

    r21d4867 rf3ecd07  
    11#!/bin/sh
    22
    3 ln -s /home/system/samba /etc/samba 2>/dev/null
    4 ln -s /home/system/cups /etc/cups 2>/dev/null
     3#replace by symlink
     4if ! [ -L /etc/cups ]; then
     5        ln -s /home/system/cups /etc/cups 2>/dev/null
     6fi
     7
     8if ! [ -L /etc/samba ]; then
     9        mv /etc/samba /etc/samba.old
     10        ln -s /home/system/samba /etc/samba 2>/dev/null
     11fi
    512
    613
Note: See TracChangeset for help on using the changeset viewer.