Skip to content

Instantly share code, notes, and snippets.

View racooper's full-sized avatar

Robert Cooper racooper

  • Aggieland, Texas
  • 23:46 (UTC -05:00)
View GitHub Profile
Name: maven3
Version: 3.2.3
Release: 1%{?dist}
Summary: Java project management and project comprehension tool
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Group: Development/Tools
License: ASL 2.0 and MIT and BSD
URL: http://maven.apache.org/
Source0: apache-maven-%{version}-bin.tar.gz
Source1: maven.sh
@racooper
racooper / logrotate.te
Created June 6, 2014 14:52
SELinux policy to allow logrotate to work in /home/<user>/log/*
module local 1.0;
require {
type home_root_t;
type user_home_t;
type logrotate_t;
class file { rename setattr read create write getattr unlink open };
class dir { read write add_name remove_name };
}