mirror of
https://github.com/hackacad/bastille.git
synced 2026-03-24 06:49:47 +01:00
Version 1.3.0
This commit is contained in:
@@ -5,7 +5,7 @@ Bastille is available in the official FreeBSD ports tree at
|
||||
``sysutils/bastille``. Binary packages are available in quarterly and latest
|
||||
repositories.
|
||||
|
||||
Current version is ``1.2.2.251204``.
|
||||
Current version is ``1.3.0.251214``.
|
||||
|
||||
To install from the FreeBSD package repository:
|
||||
|
||||
|
||||
@@ -5,9 +5,9 @@ copyright = '2018-2025, Christer Edwards'
|
||||
author = 'Christer Edwards'
|
||||
|
||||
# The short X.Y version
|
||||
version = '1.2.2'
|
||||
version = '1.3.0'
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.2.2.251204'
|
||||
release = '1.3.0.251214'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
PATH=${PATH}:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
|
||||
|
||||
BASTILLE_VERSION=1.2.2.251204
|
||||
BASTILLE_VERSION=1.3.0.251214
|
||||
|
||||
# Validate config file
|
||||
# Copy default when 'setup' is called
|
||||
@@ -186,47 +186,54 @@ fi
|
||||
|
||||
# Handle sub-commands.
|
||||
case "${CMD}" in
|
||||
# 38 total commands
|
||||
bootstrap| \
|
||||
clone| \
|
||||
cmd| \
|
||||
config| \
|
||||
console| \
|
||||
convert| \
|
||||
cp| \
|
||||
create| \
|
||||
destroy| \
|
||||
edit| \
|
||||
etcupdate| \
|
||||
export| \
|
||||
htop| \
|
||||
import| \
|
||||
jcp| \
|
||||
limits| \
|
||||
list| \
|
||||
migrate| \
|
||||
monitor| \
|
||||
mount| \
|
||||
network| \
|
||||
pkg| \
|
||||
rcp| \
|
||||
rdr| \
|
||||
rename| \
|
||||
restart| \
|
||||
service| \
|
||||
setup| \
|
||||
start| \
|
||||
stop| \
|
||||
sysrc| \
|
||||
tags| \
|
||||
template| \
|
||||
top| \
|
||||
umount| \
|
||||
update| \
|
||||
upgrade| \
|
||||
verify| \
|
||||
zfs)
|
||||
# 39 total commands
|
||||
bootstrap) ;;
|
||||
clone) ;;
|
||||
cmd) ;;
|
||||
config) ;;
|
||||
console) ;;
|
||||
convert) ;;
|
||||
cp) ;;
|
||||
create) ;;
|
||||
destroy|destory)
|
||||
CMD="destroy"
|
||||
;;
|
||||
edit) ;;
|
||||
etcupdate) ;;
|
||||
export) ;;
|
||||
htop) ;;
|
||||
import) ;;
|
||||
jcp) ;;
|
||||
limit|limits)
|
||||
CMD="limits"
|
||||
;;
|
||||
list) ;;
|
||||
migrate) ;;
|
||||
monitor) ;;
|
||||
mount) ;;
|
||||
net|network)
|
||||
CMD="network"
|
||||
;;
|
||||
pkg) ;;
|
||||
rcp) ;;
|
||||
rdr) ;;
|
||||
rename) ;;
|
||||
restart) ;;
|
||||
service) ;;
|
||||
setup) ;;
|
||||
start) ;;
|
||||
stop) ;;
|
||||
sysrc) ;;
|
||||
tags) ;;
|
||||
template) ;;
|
||||
top) ;;
|
||||
umount|unmount)
|
||||
CMD="umount"
|
||||
;;
|
||||
update) ;;
|
||||
upgrade) ;;
|
||||
verify) ;;
|
||||
zfs) ;:
|
||||
*)
|
||||
usage
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user