12 lines
391 B
Bash
12 lines
391 B
Bash
#!/usr/bin/env sh
|
|
|
|
SRCDIR=$(dirname "$0")
|
|
BINDIR=/usr/local/bin
|
|
LAUNCH_AGENTS_DIR=/Library/LaunchAgents
|
|
LAUNCH_DAEMONS_DIR=/Library/LaunchDaemons
|
|
|
|
cp $SRCDIR/ogagent $BINDIR
|
|
cp $SRCDIR/ip.py $BINDIR/ip ## override 'ip' from iproute2mac-1.4.2 with a more recent one
|
|
cp $SRCDIR/es.opengnsys.agent.system.plist $LAUNCH_DAEMONS_DIR
|
|
cp $SRCDIR/es.opengnsys.agent.user.plist $LAUNCH_AGENTS_DIR
|