Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
etc-git / usr / local / bin / eg-check
Size: Mime:
#!/bin/bash
CHKRES=`cd /etc;metastore-perm -c`
if test "$CHKRES" != ""
then
	echo -e "The permission structure of the /etc is changed\n"
	echo -e "Run: eg-save"
	exit 1
fi
exit 0