You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
version=$1 |
|
if test x"$version" = x; then |
|
echo "usage: $0 old-rt-version" |
|
exit 1 |
|
fi |
|
@l_prefix@/libexec/rt/tools/rt-setup-database \ |
|
--action insert \ |
|
--datafile @l_prefix@/libexec/rt/etc/upgrade/$version
|
|
|