summaryrefslogtreecommitdiff
path: root/plugins/users
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-07-26 18:00:01 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:12 -0600
commit13ac989be47ce85bd9776c9787c9dc17ddda92f8 (patch)
tree64960fa93cdd814c0a19a0b9d5d1bedbcccb708f /plugins/users
parentc283a7d4327d7d18620ac97e927d88d5667781a4 (diff)
oops, I forgot to `bzr add' all the moved files :)
Diffstat (limited to 'plugins/users')
-rw-r--r--plugins/users/init.sh17
-rw-r--r--plugins/users/mkuser.sh24
-rw-r--r--plugins/users/rmuser.sh14
3 files changed, 55 insertions, 0 deletions
diff --git a/plugins/users/init.sh b/plugins/users/init.sh
new file mode 100644
index 0000000..ee570ff
--- /dev/null
+++ b/plugins/users/init.sh
@@ -0,0 +1,17 @@
+#!$$SHELL$$
+name='rvs init'
+ver='0.7.0'
+# Copyright (C) 2009 Luke Shumaker
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.
+
+cat << __EOF__ > "$repo/Public Domain"
+author:anonymous
+owner:Public Domain
+license:
+__EOF__
+
diff --git a/plugins/users/mkuser.sh b/plugins/users/mkuser.sh
new file mode 100644
index 0000000..594c024
--- /dev/null
+++ b/plugins/users/mkuser.sh
@@ -0,0 +1,24 @@
+#!$$SHELL$$
+name='rvs mkuser'
+ver='0.7.0'
+# Copyright (C) 2009 Luke Shumaker
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.
+
+read -p 'username: ' author
+read -p 'give copyright to: ' owner
+if [ "$owner" != 'Public Domain' ]; then
+ read -p 'use the license: ' license
+else
+ license=''
+fi
+cat << __EOF__ > "$REPO/$author"
+author:$author
+owner:$owner
+license:$license
+__EOF__
+
diff --git a/plugins/users/rmuser.sh b/plugins/users/rmuser.sh
new file mode 100644
index 0000000..598bae9
--- /dev/null
+++ b/plugins/users/rmuser.sh
@@ -0,0 +1,14 @@
+#!$$SHELL$$
+name='rvs rmuser'
+ver='0.7.0'
+# Copyright (C) 2009 Luke Shumaker
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.
+
+uname=$1
+rm "$REPO/$uname"
+