Revert "s4: Let the "setpassword" script finally use the "samdb_set_password" routine"
[Samba/aatanasov.git] / source4 / script / installpc.sh
blob81ca2f81454cdf1d03aab11f0b6902756d5fc44a
1 #!/bin/sh
2 # install miscellaneous files
4 SRCDIR="$1"
5 PKGCONFIGDIR="$2"
6 shift
7 shift
9 cd $SRCDIR || exit 1
11 for I in $*
13 cp $I $PKGCONFIGDIR
14 done
16 exit 0