diff options
author | Britney Fransen <brfransen@gmail.com> | 2020-01-30 22:45:13 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2020-01-30 22:45:13 (GMT) |
commit | 13a82e0368a29a932dbd8de2504d84a1c7484cb2 (patch) | |
tree | c189111276e527e05d3b74993be88057d100f1f2 /abs/extra/webmin/__changelog | |
parent | ff231b1e02bed98599bf4ed4b10b9945b7af8c6e (diff) | |
download | linhes_pkgbuild-13a82e0368a29a932dbd8de2504d84a1c7484cb2.zip linhes_pkgbuild-13a82e0368a29a932dbd8de2504d84a1c7484cb2.tar.gz linhes_pkgbuild-13a82e0368a29a932dbd8de2504d84a1c7484cb2.tar.bz2 |
webmin: update to 1.941. closes #1045
Diffstat (limited to 'abs/extra/webmin/__changelog')
-rw-r--r-- | abs/extra/webmin/__changelog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/abs/extra/webmin/__changelog b/abs/extra/webmin/__changelog index 741481a..6531399 100644 --- a/abs/extra/webmin/__changelog +++ b/abs/extra/webmin/__changelog @@ -1,4 +1,17 @@ PKGBUILD: Added private networks to miniserv.conf + # LINHES - make it only accessible by localhost + echo 'allow=127.0.0.1 192.168. 172.16. 10.' >> "$pkgdir"/etc/webmin/miniserv.conf + PKGBUILD: Added nofork=1 to miniserv.conf + # LINHES - add don't fork so runit can manage it + echo 'nofork=1' >> "$pkgdir"/etc/webmin/miniserv.conf + PKGBUILD: Change OS name to LinHES + PKGBUILD: Change mysql start and stop and login and pass in mysql/config + # LINHES - change mysql start stop cmds + sed -i -e 's:start_cmd=/etc/rc.d/mysqld start:start_cmd=/usr/bin/sv start mysql:g' \ + -e 's:pass=foo:pass=mythtv:g' -e 's:login=root:login=mythtv:g' \ + -e 's:stop_cmd=/etc/rc.d/mysqld stop:stop_cmd=/usr/bin/sv stop mysql:g' \ + "$pkgdir"/etc/webmin/mysql/config + |