#!/bin/sh
#
#

# PROVIDE: os-release
# REQUIRE: mountcritremote FILESYSTEMS
# BEFORE:  LOGIN

. /etc/rc.subr

: ${osrelease_file:=/var/run/os-release}
: ${osrelease_perms:=444}
name="osrelease"
desc="Update ${osrelease_file}"
rcvar="osrelease_enable"
start_cmd="osrelease_start"
stop_cmd=":"

osrelease_start()
{
	local _version _version_id

	startmsg -n "Updating ${osrelease_file} "	
	_version=$(ghostbsd-version -v)
	_version_id=${_version%%[^0-9.]*}
	t=$(mktemp -t os-release)
	cat > "$t" <<-__EOF__
		NAME="GhostBSD"
		VERSION="$_version"
		VERSION_ID="$_version_id"
		ID="ghostbsd"
		ANSI_COLOR="0;31"
		PRETTY_NAME="GhostBSD $_version"
		CPE_NAME=cpe:/o:ghostbsd:ghostbsd:$_version_id
		HOME_URL=https://GhostBSD.org/
		BUG_REPORT_URL=https://github.com/ghostbsd/issues/issues/new/choose
		CODENAME="Twenty-Five"
__EOF__
	install -C -o root -g wheel -m ${osrelease_perms} "$t" "${osrelease_file}"
	rm -f "$t"
	startmsg 'done.'
}

load_rc_config $name
run_rc_command "$1"
