FreeBSD virtual environment management and repository

2020-10 upd: we reached the first fundraising goal and rented a server in Hetzner for development! Thank you for donating !

Attention! Current pages describe CBSD version 13.0.x. If you are using an older version, please update first.

Attention! I apologize for the automatic translation of this text. You can improve it by sending me a more correct version of the text or fix html pages via GITHUB repository.

Working with passwd(1), sysrc(8), service(8) in jail via CBSD

Commands: passwd, sysrc, service

			% cbsd passwd
		
			% cbsd sysrc
		
			% cbsd service
		

Description:

Commands from bsdconf.d module - is a wrapper around the standard FreeBSD sysrc(8), service(8), passwd(1) for adding jname argument for more convenient work with the services and password in jail from the master host.

Via jname= argument specified jail, all that comes after (except passwd, which has yet possible user= ) - not analyzed and treated appropriately utitites as is.

Example1: Mark sshd service in jail1 as active:

			% cbsd sysrc jname=jail1 sshd_enable="YES"
		

Example2: Get list of services from jail1:

			% cbsd sysrc jname=jail1 service -l
		

Example3: Start sshd service in jail1:

			% cbsd service jname=jail1 sshd start
		

Example4: Change password for root user in jail1:

			% cbsd passwd jname=jail1
		

Example5: Change password for web user in jail1:

			% cbsd passwd jname=jail1 user=web