You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@trafficserver.apache.org by Jan-Frode Myklebust <ja...@tanso.net> on 2011/06/14 23:49:17 UTC

packaged for RHEL / EPEL ?

Are anybody looking into getting ATS packaged for RHEL / EPEL ? Or does
anybody know of a good RPM spec file I can use as a base to try to get
it included in EPEL ?


  -jf

Re: packaged for RHEL / EPEL ?

Posted by Jan-Frode Myklebust <ja...@tanso.net>.
On Thu, Jun 16, 2011 at 04:21:19PM +0800, ming.zym@gmail.com wrote:
> it works for me on many OSes,
> I see something strange in your config,
> when my build the config records.config hard coded all path to be /
> started, but seems your differ from mine, here is my rpm default:

No, I have the leading '/' as well. I was diffing against a
config.default generated from "./configure --prefix=/usr/local/ts; make
install", and that was missing the leading /, not the active config. Sorry
about the confusion here.


  -jf

Re: packaged for RHEL / EPEL ?

Posted by "ming.zym@gmail.com" <mi...@gmail.com>.
it works for me on many OSes, I see something strange in your config,
when my build the config records.config hard coded all path to be /
started, but seems your differ from mine, here is my rpm default:
[root@unknown-10-62-163-x rpmbuild]# grep 'dir
'  /etc/trafficserver/records.config
CONFIG proxy.config.config_dir STRING /etc/trafficserver
CONFIG proxy.config.temp_dir STRING /tmp
CONFIG proxy.config.snapshot_dir STRING snapshots
CONFIG proxy.config.log.logfile_dir STRING /var/log/trafficserver
[root@unknown-10-62-163-x rpmbuild]# grep 'path
'  /etc/trafficserver/records.config
CONFIG proxy.config.alarm.abs_path STRING NULL
   # This is the path that will be used for both single and
CONFIG proxy.config.ssl.server.cert.path STRING /etc/trafficserver
   # Fill in private key file and path only if the server's
CONFIG proxy.config.ssl.server.private_key.path STRING NULL
   # The CA file name and path are the
CONFIG proxy.config.ssl.CA.cert.path STRING NULL
CONFIG proxy.config.ssl.client.cert.path STRING /etc/trafficserver
   # Fill in private key file and path only if the client's
CONFIG proxy.config.ssl.client.private_key.path STRING NULL
   # The CA file name and path are the
CONFIG proxy.config.ssl.client.CA.cert.path STRING NULL
[root@unknown-10-62-163-x rpmbuild]# 
[root@unknown-10-62-163-x rpmbuild]# rpm
-Vf /etc/trafficserver/records.config
[root@unknown-10-62-163-x rpmbuild]# echo $?
0



在 2011-06-16四的 09:41 +0200,Jan-Frode Myklebust写道:
> On Thu, Jun 16, 2011 at 06:10:07AM +0800, ming.zym@gmail.com wrote:
> > the admin interface should not be actived by default, I don't have admin
> > but works with default config. I am cofused.
> 
> Well.. it works for me as well, just gives these warnings about
> 
> 	traffic_cop[12854]: can't get passwd entry for the admin user
> 
> in /var/log/messages on every startup, and sometimes kills itself
> because of the missing heartbeat.
> 
> > can you provide more information?
> > ie, pastebin the full records.config
> 
> 	http://fpaste.org/jRiH/
> 
> I've touched the config a bit more since I initially posted.
> Here's the diff against records.config.default:
> 
> -CONFIG proxy.config.proxy_name STRING oc1046828364.ibm.com
> -CONFIG proxy.config.config_dir STRING etc/trafficserver
> +CONFIG proxy.config.proxy_name STRING dibs.tanso.net
> +CONFIG proxy.config.config_dir STRING /etc/trafficserver
> -CONFIG proxy.config.exec_thread.autoconfig.scale FLOAT 1.5
> +CONFIG proxy.config.exec_thread.autoconfig.scale FLOAT 1.500000
> -CONFIG proxy.config.http.server_port INT 8080
> +CONFIG proxy.config.http.server_port INT 80
> -# CONFIG proxy.config.http.server_other_ports STRING 8080:X6
> -CONFIG proxy.config.http.server_other_ports STRING NULL
> +CONFIG proxy.config.http.server_other_ports STRING 80:X6
> -CONFIG proxy.config.http.background_fill_completed_threshold FLOAT 0.5
> +CONFIG proxy.config.http.background_fill_completed_threshold FLOAT 0.500000
> -CONFIG proxy.config.http.quick_filter.mask INT 0x482
> +CONFIG proxy.config.http.quick_filter.mask INT 1154
> -CONFIG proxy.config.http.normalize_ae_gzip INT 0       
> +CONFIG proxy.config.http.normalize_ae_gzip INT 0
> -CONFIG proxy.config.http.cache.heuristic_lm_factor FLOAT 0.10
> +CONFIG proxy.config.http.cache.heuristic_lm_factor FLOAT 0.100000
> -CONFIG proxy.config.http.cache.fuzz.probability FLOAT 0.005
> +CONFIG proxy.config.http.cache.fuzz.probability FLOAT 0.005000
> -CONFIG proxy.config.cluster.ethernet_interface STRING tun1
> +CONFIG proxy.config.cluster.ethernet_interface STRING eth0
> -CONFIG proxy.config.hostdb.storage_size INT 32M
> +CONFIG proxy.config.hostdb.storage_size INT 33554432
> -CONFIG proxy.config.log.logfile_dir STRING var/log/trafficserver
> +CONFIG proxy.config.log.logfile_dir STRING /var/log/trafficserver
> -CONFIG proxy.config.log.common_log_enabled INT 0
> +CONFIG proxy.config.log.common_log_enabled INT 1
> -CONFIG proxy.config.ssl.server.cert.path STRING etc/trafficserver
> +CONFIG proxy.config.ssl.server.cert.path STRING /etc/trafficserver
> -CONFIG proxy.config.ssl.client.cert.path STRING etc/trafficserver
> +CONFIG proxy.config.ssl.client.cert.path STRING /etc/trafficserver
> +CONFIG proxy.config.http_ui_enabled INT 3
> +CONFIG proxy.config.http.enable_http_info INT 1
> +CONFIG proxy.config.url_remap.filename STRING remap.config
> 
> 
> > and  the following result:
> > 
> > > [root@unknown-10-62-163-x trafficserver]# grep admin records.config
> > > #         administration guide or the addendum:
> > > CONFIG proxy.config.admin.admin_user STRING admin
> > > CONFIG proxy.config.admin.number_config_bak INT 3
> > > CONFIG proxy.config.admin.user_id STRING nobody
> > > CONFIG proxy.config.admin.autoconf_port INT 8083
> 
> 	[root@dibs trafficserver]# grep admin records.config
> 	#         administration guide or the addendum:
> 	CONFIG proxy.config.admin.admin_user STRING admin
> 	CONFIG proxy.config.admin.number_config_bak INT 3
> 	CONFIG proxy.config.admin.user_id STRING nobody
> 	CONFIG proxy.config.admin.autoconf_port INT 8083
> 
> 
> > > [root@unknown-10-62-163-x trafficserver]# grep nobody /etc/passwd
> > > nobody:x:99:99:Nobody:/:/sbin/nologin
> 
> 	[root@dibs trafficserver]# grep nobody /etc/passwd
> 	nobody:x:99:99:Nobody:/:/sbin/nologin
> 	nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin
> 
> > > [root@unknown-10-62-163-x trafficserver]# grep nobody records.config
> > > CONFIG proxy.config.alarm_email STRING nobody
> > > CONFIG proxy.config.admin.user_id STRING nobody
> 
> 	[root@dibs trafficserver]# grep nobody records.config
> 	CONFIG proxy.config.alarm_email STRING nobody
> 	CONFIG proxy.config.admin.user_id STRING nobody
> 
> So we have the same settings here.  Are you not seeing these messages
> from traffic_cop in the syslog on startup?
> 
> 	traffic_cop[12854]: can't get passwd entry for the admin user
> 	traffic_cop[12854]: can't get passwd entry for the admin user
> 
> 
> 
> 
>   -jf



Re: packaged for RHEL / EPEL ?

Posted by Jan-Frode Myklebust <ja...@tanso.net>.
On Thu, Jun 16, 2011 at 06:10:07AM +0800, ming.zym@gmail.com wrote:
> the admin interface should not be actived by default, I don't have admin
> but works with default config. I am cofused.

Well.. it works for me as well, just gives these warnings about

	traffic_cop[12854]: can't get passwd entry for the admin user

in /var/log/messages on every startup, and sometimes kills itself
because of the missing heartbeat.

> can you provide more information?
> ie, pastebin the full records.config

	http://fpaste.org/jRiH/

I've touched the config a bit more since I initially posted.
Here's the diff against records.config.default:

-CONFIG proxy.config.proxy_name STRING oc1046828364.ibm.com
-CONFIG proxy.config.config_dir STRING etc/trafficserver
+CONFIG proxy.config.proxy_name STRING dibs.tanso.net
+CONFIG proxy.config.config_dir STRING /etc/trafficserver
-CONFIG proxy.config.exec_thread.autoconfig.scale FLOAT 1.5
+CONFIG proxy.config.exec_thread.autoconfig.scale FLOAT 1.500000
-CONFIG proxy.config.http.server_port INT 8080
+CONFIG proxy.config.http.server_port INT 80
-# CONFIG proxy.config.http.server_other_ports STRING 8080:X6
-CONFIG proxy.config.http.server_other_ports STRING NULL
+CONFIG proxy.config.http.server_other_ports STRING 80:X6
-CONFIG proxy.config.http.background_fill_completed_threshold FLOAT 0.5
+CONFIG proxy.config.http.background_fill_completed_threshold FLOAT 0.500000
-CONFIG proxy.config.http.quick_filter.mask INT 0x482
+CONFIG proxy.config.http.quick_filter.mask INT 1154
-CONFIG proxy.config.http.normalize_ae_gzip INT 0       
+CONFIG proxy.config.http.normalize_ae_gzip INT 0
-CONFIG proxy.config.http.cache.heuristic_lm_factor FLOAT 0.10
+CONFIG proxy.config.http.cache.heuristic_lm_factor FLOAT 0.100000
-CONFIG proxy.config.http.cache.fuzz.probability FLOAT 0.005
+CONFIG proxy.config.http.cache.fuzz.probability FLOAT 0.005000
-CONFIG proxy.config.cluster.ethernet_interface STRING tun1
+CONFIG proxy.config.cluster.ethernet_interface STRING eth0
-CONFIG proxy.config.hostdb.storage_size INT 32M
+CONFIG proxy.config.hostdb.storage_size INT 33554432
-CONFIG proxy.config.log.logfile_dir STRING var/log/trafficserver
+CONFIG proxy.config.log.logfile_dir STRING /var/log/trafficserver
-CONFIG proxy.config.log.common_log_enabled INT 0
+CONFIG proxy.config.log.common_log_enabled INT 1
-CONFIG proxy.config.ssl.server.cert.path STRING etc/trafficserver
+CONFIG proxy.config.ssl.server.cert.path STRING /etc/trafficserver
-CONFIG proxy.config.ssl.client.cert.path STRING etc/trafficserver
+CONFIG proxy.config.ssl.client.cert.path STRING /etc/trafficserver
+CONFIG proxy.config.http_ui_enabled INT 3
+CONFIG proxy.config.http.enable_http_info INT 1
+CONFIG proxy.config.url_remap.filename STRING remap.config


> and  the following result:
> 
> > [root@unknown-10-62-163-x trafficserver]# grep admin records.config
> > #         administration guide or the addendum:
> > CONFIG proxy.config.admin.admin_user STRING admin
> > CONFIG proxy.config.admin.number_config_bak INT 3
> > CONFIG proxy.config.admin.user_id STRING nobody
> > CONFIG proxy.config.admin.autoconf_port INT 8083

	[root@dibs trafficserver]# grep admin records.config
	#         administration guide or the addendum:
	CONFIG proxy.config.admin.admin_user STRING admin
	CONFIG proxy.config.admin.number_config_bak INT 3
	CONFIG proxy.config.admin.user_id STRING nobody
	CONFIG proxy.config.admin.autoconf_port INT 8083


> > [root@unknown-10-62-163-x trafficserver]# grep nobody /etc/passwd
> > nobody:x:99:99:Nobody:/:/sbin/nologin

	[root@dibs trafficserver]# grep nobody /etc/passwd
	nobody:x:99:99:Nobody:/:/sbin/nologin
	nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin

> > [root@unknown-10-62-163-x trafficserver]# grep nobody records.config
> > CONFIG proxy.config.alarm_email STRING nobody
> > CONFIG proxy.config.admin.user_id STRING nobody

	[root@dibs trafficserver]# grep nobody records.config
	CONFIG proxy.config.alarm_email STRING nobody
	CONFIG proxy.config.admin.user_id STRING nobody

So we have the same settings here.  Are you not seeing these messages
from traffic_cop in the syslog on startup?

	traffic_cop[12854]: can't get passwd entry for the admin user
	traffic_cop[12854]: can't get passwd entry for the admin user




  -jf

Re: packaged for RHEL / EPEL ?

Posted by "ming.zym@gmail.com" <mi...@gmail.com>.
the admin interface should not be actived by default, I don't have admin
but works with default config. I am cofused.

can you provide more information?
ie, pastebin the full records.config and  the following result:

> [root@unknown-10-62-163-x trafficserver]# grep admin records.config
> #         administration guide or the addendum:
> CONFIG proxy.config.admin.admin_user STRING admin
> CONFIG proxy.config.admin.number_config_bak INT 3
> CONFIG proxy.config.admin.user_id STRING nobody
> CONFIG proxy.config.admin.autoconf_port INT 8083
> [root@unknown-10-62-163-x trafficserver]# grep nobody /etc/passwd
> nobody:x:99:99:Nobody:/:/sbin/nologin
> [root@unknown-10-62-163-x trafficserver]# grep nobody records.config
> CONFIG proxy.config.alarm_email STRING nobody
> CONFIG proxy.config.admin.user_id STRING nobody

在 2011-06-15三的 22:23 +0200,Jan-Frode Myklebust写道:
> On Wed, Jun 15, 2011 at 01:41:59PM +0800, ming.zym@gmail.com wrote:
> > I have started the Fedora package review in
> > https://bugzilla.redhat.com/show_bug.cgi?id=683463
> > 
> > it is still v2.x now, I will update it to v3.0.0 asap.
> 
> Great, I've tested the v3.0.0 package and left some comments
> in the bugzilla.
> 
> When I built this and run it on RHEL6 I'm seeing some problems.
> The traffic_cop is reporting it can't find the passwd entry for the
> admin user:
> 
> 	traffic_cop[12924]: can't get passwd entry for the admin user
> 
> so I guess this user should be added by the package (not sure which use
> this is though).
> 
> Also TS is dying occationally on startup (after "service trafficserver
> restart"), with the following set of log entries. 
> 
> 	Server: Jun 15 22:07:05 dibs traffic_cop[12854]: --- Cop Starting [Version: Apache Traffic Server - traffic_cop - 3.0.0 - (build # 51513 on Jun 15 2011 at 13:30:41)] ---
> 	Jun 15 22:07:05 dibs traffic_cop[12854]: can't get passwd entry for the admin user
> 	Jun 15 22:07:05 dibs traffic_cop[12854]: can't get passwd entry for the admin user
> 	Jun 15 22:07:05 dibs traffic_cop[12854]: traffic_manager not running, making sure traffic_server is dead
> 	Jun 15 22:07:05 dibs traffic_cop[12854]: spawning traffic_manager
> 	Jun 15 22:07:05 dibs traffic_manager[12856]: NOTE: --- Manager Starting ---
> 	Jun 15 22:07:05 dibs traffic_manager[12856]: NOTE: Manager Version: Apache Traffic Server - traffic_manager - 3.0.0 - (build # 51513 on Jun 15 2011 at 13:29:26)
> 	Jun 15 22:07:05 dibs traffic_manager[12856]: NOTE: RLIMIT_NOFILE(7):cur(30000),max(30000)
> 	Jun 15 22:07:05 dibs traffic_manager[12856]: {139862762063840} STATUS: opened /var/log/trafficserver/manager.log
> 	Jun 15 22:07:07 dibs traffic_server[12867]: NOTE: --- Server Starting ---
> 	Jun 15 22:07:07 dibs traffic_server[12867]: NOTE: Server Version: Apache Traffic Server - traffic_server - 3.0.0 - (build # 51513 on Jun 15 2011 at 13:30:19)
> 	Jun 15 22:07:07 dibs traffic_server[12867]: {47910052150624} STATUS: opened /var/log/trafficserver/diags.log
> 	Jun 15 22:07:15 dibs traffic_cop[12854]: (cli test) unable to retrieve manager_binary
> 	Jun 15 22:07:15 dibs traffic_cop[12854]: manager heartbeat [variable] failed [1]
> 	Jun 15 22:07:25 dibs traffic_cop[12854]: (cli test) unable to retrieve manager_binary
> 	Jun 15 22:07:25 dibs traffic_cop[12854]: manager heartbeat [variable] failed [2]
> 	Jun 15 22:07:25 dibs traffic_cop[12854]: killing manager
> 
> Strangely it's not happening every time.. I'm running pretty much
> default config, except the following changes:
> 
> 	remap.config:
> 		map http://blag.tanso.net/ http://127.0.0.1:8080/
> 	storage.config:
> 		# /var/cache/trafficserver 256M
> 		/dev/rootvg/trafficlv
> 	records.config:
> 		CONFIG proxy.config.proxy_name STRING dibs.tanso.net
> 		CONFIG proxy.config.http.server_port INT 80
> 		CONFIG proxy.config.http.server_other_ports STRING 80:X6
> 
> 
>   -jf



Re: packaged for RHEL / EPEL ?

Posted by Jan-Frode Myklebust <ja...@tanso.net>.
On Wed, Jun 15, 2011 at 01:41:59PM +0800, ming.zym@gmail.com wrote:
> I have started the Fedora package review in
> https://bugzilla.redhat.com/show_bug.cgi?id=683463
> 
> it is still v2.x now, I will update it to v3.0.0 asap.

Great, I've tested the v3.0.0 package and left some comments
in the bugzilla.

When I built this and run it on RHEL6 I'm seeing some problems.
The traffic_cop is reporting it can't find the passwd entry for the
admin user:

	traffic_cop[12924]: can't get passwd entry for the admin user

so I guess this user should be added by the package (not sure which use
this is though).

Also TS is dying occationally on startup (after "service trafficserver
restart"), with the following set of log entries. 

	Server: Jun 15 22:07:05 dibs traffic_cop[12854]: --- Cop Starting [Version: Apache Traffic Server - traffic_cop - 3.0.0 - (build # 51513 on Jun 15 2011 at 13:30:41)] ---
	Jun 15 22:07:05 dibs traffic_cop[12854]: can't get passwd entry for the admin user
	Jun 15 22:07:05 dibs traffic_cop[12854]: can't get passwd entry for the admin user
	Jun 15 22:07:05 dibs traffic_cop[12854]: traffic_manager not running, making sure traffic_server is dead
	Jun 15 22:07:05 dibs traffic_cop[12854]: spawning traffic_manager
	Jun 15 22:07:05 dibs traffic_manager[12856]: NOTE: --- Manager Starting ---
	Jun 15 22:07:05 dibs traffic_manager[12856]: NOTE: Manager Version: Apache Traffic Server - traffic_manager - 3.0.0 - (build # 51513 on Jun 15 2011 at 13:29:26)
	Jun 15 22:07:05 dibs traffic_manager[12856]: NOTE: RLIMIT_NOFILE(7):cur(30000),max(30000)
	Jun 15 22:07:05 dibs traffic_manager[12856]: {139862762063840} STATUS: opened /var/log/trafficserver/manager.log
	Jun 15 22:07:07 dibs traffic_server[12867]: NOTE: --- Server Starting ---
	Jun 15 22:07:07 dibs traffic_server[12867]: NOTE: Server Version: Apache Traffic Server - traffic_server - 3.0.0 - (build # 51513 on Jun 15 2011 at 13:30:19)
	Jun 15 22:07:07 dibs traffic_server[12867]: {47910052150624} STATUS: opened /var/log/trafficserver/diags.log
	Jun 15 22:07:15 dibs traffic_cop[12854]: (cli test) unable to retrieve manager_binary
	Jun 15 22:07:15 dibs traffic_cop[12854]: manager heartbeat [variable] failed [1]
	Jun 15 22:07:25 dibs traffic_cop[12854]: (cli test) unable to retrieve manager_binary
	Jun 15 22:07:25 dibs traffic_cop[12854]: manager heartbeat [variable] failed [2]
	Jun 15 22:07:25 dibs traffic_cop[12854]: killing manager

Strangely it's not happening every time.. I'm running pretty much
default config, except the following changes:

	remap.config:
		map http://blag.tanso.net/ http://127.0.0.1:8080/
	storage.config:
		# /var/cache/trafficserver 256M
		/dev/rootvg/trafficlv
	records.config:
		CONFIG proxy.config.proxy_name STRING dibs.tanso.net
		CONFIG proxy.config.http.server_port INT 80
		CONFIG proxy.config.http.server_other_ports STRING 80:X6


  -jf

Re: packaged for RHEL / EPEL ?

Posted by "ming.zym@gmail.com" <mi...@gmail.com>.
I have started the Fedora package review in
https://bugzilla.redhat.com/show_bug.cgi?id=683463

it is still v2.x now, I will update it to v3.0.0 asap.

FYI

在 2011-06-14二的 16:16 -0700,Billy Vierra写道:
> I currently am :) there are a few things holding us back right now. Unfortunately I started a new job and the transition has taken more of my ATS time. I am actually about to post the RPM I have for it.
> 
> Here are the errors from rpmlint currently:
> trafficserver.x86_64: W: shared-lib-calls-exit /usr/lib64/libtsutil.so.3.0.0 _exit@GLIBC_2.2.5
> trafficserver.x86_64: W: wrong-file-end-of-line-encoding /usr/share/doc/trafficserver-3.0.0/README-EC2
> trafficserver.x86_64: W: devel-file-in-non-devel-package /usr/lib64/libtsutil.so
> trafficserver.x86_64: W: devel-file-in-non-devel-package /usr/lib64/libtsmgmt.so
> trafficserver.x86_64: E: library-without-ldconfig-postun /usr/lib64/libtsmgmt.so.3.0.0
> trafficserver.x86_64: E: library-without-ldconfig-postun /usr/lib64/libtsutil.so.3.0.0
> trafficserver.x86_64: W: hidden-file-or-dir /etc/trafficserver/body_factory/default/.body_factory_info
> trafficserver.x86_64: W: non-conffile-in-etc /etc/trafficserver/trafficserver-release
> trafficserver.x86_64: W: log-files-without-logrotate /var/log/trafficserver
> trafficserver.x86_64: W: service-default-enabled /etc/init.d/trafficserver
> trafficserver.x86_64: E: no-chkconfig-line /etc/init.d/trafficserver
> trafficserver.x86_64: E: subsys-not-used /etc/init.d/trafficserver
> 
> Some of them I can do pretty easy (the logrotate, conf, etc). However I talked with Zwoop a little bit about the others, just need to get them into Jira.
> -B
> 
> ----- Original Message -----
> From: "Jan-Frode Myklebust" <ja...@tanso.net>
> To: users@trafficserver.apache.org
> Sent: Tuesday, June 14, 2011 2:49:17 PM
> Subject: packaged for RHEL / EPEL ?
> 
> Are anybody looking into getting ATS packaged for RHEL / EPEL ? Or does
> anybody know of a good RPM spec file I can use as a base to try to get
> it included in EPEL ?
> 
> 
>   -jf



Re: packaged for RHEL / EPEL ?

Posted by Billy Vierra <bv...@sortatechie.com>.
I currently am :) there are a few things holding us back right now. Unfortunately I started a new job and the transition has taken more of my ATS time. I am actually about to post the RPM I have for it.

Here are the errors from rpmlint currently:
trafficserver.x86_64: W: shared-lib-calls-exit /usr/lib64/libtsutil.so.3.0.0 _exit@GLIBC_2.2.5
trafficserver.x86_64: W: wrong-file-end-of-line-encoding /usr/share/doc/trafficserver-3.0.0/README-EC2
trafficserver.x86_64: W: devel-file-in-non-devel-package /usr/lib64/libtsutil.so
trafficserver.x86_64: W: devel-file-in-non-devel-package /usr/lib64/libtsmgmt.so
trafficserver.x86_64: E: library-without-ldconfig-postun /usr/lib64/libtsmgmt.so.3.0.0
trafficserver.x86_64: E: library-without-ldconfig-postun /usr/lib64/libtsutil.so.3.0.0
trafficserver.x86_64: W: hidden-file-or-dir /etc/trafficserver/body_factory/default/.body_factory_info
trafficserver.x86_64: W: non-conffile-in-etc /etc/trafficserver/trafficserver-release
trafficserver.x86_64: W: log-files-without-logrotate /var/log/trafficserver
trafficserver.x86_64: W: service-default-enabled /etc/init.d/trafficserver
trafficserver.x86_64: E: no-chkconfig-line /etc/init.d/trafficserver
trafficserver.x86_64: E: subsys-not-used /etc/init.d/trafficserver

Some of them I can do pretty easy (the logrotate, conf, etc). However I talked with Zwoop a little bit about the others, just need to get them into Jira.
-B

----- Original Message -----
From: "Jan-Frode Myklebust" <ja...@tanso.net>
To: users@trafficserver.apache.org
Sent: Tuesday, June 14, 2011 2:49:17 PM
Subject: packaged for RHEL / EPEL ?

Are anybody looking into getting ATS packaged for RHEL / EPEL ? Or does
anybody know of a good RPM spec file I can use as a base to try to get
it included in EPEL ?


  -jf