view host/startupScripts.sh @ 1633:665049cffc02

fix path
author fffilimonov
date Tue, 14 Dec 2021 07:55:47 -0600
parents 0344a535b1db
children
line wrap: on
line source

ROOTPWD=$(pwd);
IP=$(ifconfig en0 | awk '{if($0~"inet "){print $2}}');

user=$(whoami);

systemStarup='/Library/LaunchDaemons';
localStartup=${ROOTPWD}'/local/startup';
startup=${ROOTPWD}'/startup/macos';
startupPostgres=${ROOTPWD}'/startup/postgres/macos';

function addStartup() {
  cd $localStartup;
  for file in *.plist; do
    sudo ln -sf ${localStartup}/${file} ${systemStarup}/${file};
    sudo chown root:wheel ${localStartup}/${file};
  done;
}