Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F13144684
init
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
init
View Options
#!/bin/bash
set
-e
# generate a password for root.
ROOT_PASSWORD
=
$(
pwgen -c -n -1
12
)
echo
"root:
$ROOT_PASSWORD
"
|
chpasswd
echo
User: root Password:
$ROOT_PASSWORD
# start supervisord
/usr/bin/supervisord
echo
"Starting openssh server..."
supervisorctl start sshd >/dev/null
chmod
775
/app/data
mkdir -p /app/data/openfire
chown -R openfire:openfire /app/data/openfire
# populate default openfire configuration if it does not exist
if
[
! -d /app/data/openfire/etc
]
;
then
mv /etc/openfire /app/data/openfire/etc
fi
rm -rf /etc/openfire
ln -sf /app/data/openfire/etc /etc/openfire
if
[
! -d /app/data/openfire/lib
]
;
then
mv /var/lib/openfire /app/data/openfire/lib
fi
rm -rf /var/lib/openfire
ln -sf /app/data/openfire/lib /var/lib/openfire
appStart
()
{
echo
"Starting openfire..."
supervisorctl start openfire >/dev/null
tail -F /usr/share/openfire/logs/info.log
}
appHelp
()
{
echo
"Available options:"
echo
" app:start - Start the openfire server (default)"
echo
" app:help - Displays the help"
echo
" [command] - Execute the specified linux command eg. bash."
}
case
"
$1
"
in
app:start
)
appStart
;;
app:help
)
appHelp
;;
*
)
if
[
-x
$1
]
;
then
$1
else
prog
=
$(
which
$1
)
if
[
-n
"
${
prog
}
"
]
;
then
shift
1
$prog
$@
else
appHelp
fi
fi
;;
esac
exit
0
File Metadata
Details
Attached
Mime Type
text/x-shellscript
Expires
Fri, Nov 21, 17:01 (7 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3173204
Default Alt Text
init (1 KB)
Attached To
Mode
rDO Docker image for Openfire
Attached
Detach File
Event Timeline
Log In to Comment