Skip to content
Snippets Groups Projects
Commit 05d539d8 authored by Russ Fish's avatar Russ Fish
Browse files

chown uid.gid in ops-install target is Linux syntax; doesn't work on FreeBSD. ...

chown uid.gid in ops-install target is Linux syntax; doesn't work on FreeBSD.  Separate chown and chgrp so it works either way.
parent 84042868
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,8 @@ ops-install:
-mkdir -p $(INSTALL_TOPDIR)/log
-mkdir -p $(INSTALL_TOPDIR)/log/mysql
-chmod 770 $(INSTALL_TOPDIR)/log/mysql
-chown mysql.mysql $(INSTALL_TOPDIR)/log/mysql
-chown mysql $(INSTALL_TOPDIR)/log/mysql
-chgrp mysql $(INSTALL_TOPDIR)/log/mysql
@$(MAKE) -C tbsetup control-install
@$(MAKE) -C security control-install
@$(MAKE) -C tip control-install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment