source: trunk/locker/sbin/vhostedit @ 2723

Last change on this file since 2723 was 2638, checked in by andersk, 9 years ago
vhostedit: Allow editing multiple vhosts simultaneously
  • Property svn:executable set to *
File size: 390 bytes
Line 
1#!/bin/sh
2
3if [ ! "$1" ]; then
4    echo "Usage: $0 <vhost>"
5    exit 2
6fi
7
8exec ldapvi --bind sasl -Y GSSAPI -h scripts5.mit.edu -b dc=scripts,dc=mit,dc=edu \
9       "(|(&(objectClass=apacheConfig)(|$(printf '(apacheServerName=%s)' "$@")$(printf '(apacheServerAlias=%s)' "$@")))(&(objectClass=scriptsVhost)(|$(printf '(scriptsVhostName=%s)' "$@")$(printf '(scriptsVhostAlias=%s)' "$@"))))"
Note: See TracBrowser for help on using the repository browser.